I’m searching for solutions to render checkbox in jupyter notebook, which is a feature provided in GFM.

As noted in issue #6288 IPython use marked.js for rendering, but marked.js doesn’t have a backend to manage checkbox in an interactive way. One static solution proposed in issue #107 is to use unicode entities:
- For unchecked square: http://www.fileformat.info/info/unicode/char/2610/index.htm
- For checked square: http://www.fileformat.info/info/unicode/char/2611/index.htm
Looks like this after rendering:

Not very impressive…
Please let me know if there exists better solution!