-
Notifications
You must be signed in to change notification settings - Fork 572
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nbconvert --to html skips Markdown within HTML tags #1125
Comments
This would be convenient, especially with the bootstrap-like colored boxes in JupyterLab, that show up nicely inside the notebooks: I realize that it could be rewritten to use HTML tags, but I prefer to have it in markdown to be able to export to PDF when needed (even if the box is not included), and since I have scripts that parse the markdown headers. |
Yes, it would be great if
When using my Sphinx extension nbsphinx the boxes will also be included in PDF output, see e.g. https://nbsphinx.readthedocs.io/_/downloads/en/0.7.1/pdf/#subsection.3.8 This could possibly also be added to |
For future reference: jupyter/notebook#1292 |
I thought I had found gold with the discovery of the magic blank line that makes markdown within
I got the correct result with Recommend closing as fixed in a dependency. |
Current version of |
nbconvert to html skips Markdown within HTML tags
e.g.
nbconvert --to html will bypass the conens of that blockquote section.
(Note that if you don't put in the
</blockquote>
, Markdown still renders as a blockquote (to the end of th cell) ANDnbconvert --to html
converts properly. Apparently,nbconvert
is triggered by the closing tag, not the opening tag.The text was updated successfully, but these errors were encountered: