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
Currently, when exporting markdown to html, all html special characters are escaped:
using Markdown
a = Markdown.parse("This is *important* text with <i>html</i> in it");
# parsed as
Markdown.Paragraph(Any["This is ", Markdown.Italic(Any["important"]), " text with <i>html</i> in it"])
# then exporting to html
Markdown.html(a)
# output below"<p>This is <em>important</em> text with <i>html</i> in it</p>\n"
and there is no way of getting such an output:
<p>This is <em>important</em> text with <i>html</i> in it</p>
So, this issue is a feature request.
It could even be the default behavior for all markdown blocks except code block.
Currently, when exporting markdown to html, all html special characters are escaped:
and there is no way of getting such an output:
So, this issue is a feature request.
It could even be the default behavior for all markdown blocks except code block.
(similar to #34042)
The text was updated successfully, but these errors were encountered: