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
There is the same issue after a non-breaking space:
markdown=Redcarpet::Markdown.new(Redcarpet::Render::HTML,no_intra_emphasis: true)markdown.render"There is a non-breaking space here -> **foo** bar"# => "<p>There is a non-breaking space here -> **foo** bar</p>\n"
Hi,
inline markup, like italics, is ignored inside parenthesis with
no_intra_emphasis
. For example:In fact, it's only the opening parenthesis that blocks it. If we had a space after it, it works:
The text was updated successfully, but these errors were encountered: