You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Presently adding html markup to the Jupyter notebook requires doing it either from python:
from IPython.display import HTML
somehtml ='<div>....</div>'
display(HTML(somehtml)
or using the %%html magic at the beginning of an input cell.
I am not clear on all the details of front-end javascript to server communication, but I think it should be relatively easy for somebody familiar with it to add an option to have tinymce (LGPL license), quill (BSD license) or similar wysiwyg javascript editor as another option for the cell type in addition to Code, Markdown, Raw nbconvert and Heading.
I do not have much time, but if it is really simple and somebody can provide an hint as to where to start, I could attempt it. I've done a significant amount of coding for Sagemath and Plone.
The text was updated successfully, but these errors were encountered:
Hey there @gutow , I'm going through old issues and I'm sorry we didn't respond sooner on the jupyter repository. I'm moving this to the notebook repo, as this feature requests belongs there (or possibly in jupyterlab/jupyterlab - but cross-organization transfer are more cumbersome).
I'll just add that there has been work since this posting. I tried getting quill to work, but it required changing the notebook format to make it work smoothly. There is also this project https://github.com/g2nb/jupyter-wysiwyg, which is partway there. It does not deal well with embeded latex expressions and still needs interface work, but basically does what is needed. This probably needs to be embedded in jupyter as a setting for markdown cells.
Thank you for opening this issue @gutow! These requested changes, if embedded in jupyter, would be applied upstream in https://github.com/jupyterlab/jupyterlab. There is an older issue open in JupyterLab, jupyterlab/jupyterlab#5908, with a similar request. I will close this issue in favor of the JupyterLab issue and link this issue there for reference.
Presently adding html markup to the Jupyter notebook requires doing it either from python:
or using the
%%html
magic at the beginning of an input cell.I am not clear on all the details of front-end javascript to server communication, but I think it should be relatively easy for somebody familiar with it to add an option to have tinymce (LGPL license), quill (BSD license) or similar wysiwyg javascript editor as another option for the cell type in addition to Code, Markdown, Raw nbconvert and Heading.
I do not have much time, but if it is really simple and somebody can provide an hint as to where to start, I could attempt it. I've done a significant amount of coding for Sagemath and Plone.
The text was updated successfully, but these errors were encountered: