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
It used to be working fine, but now some old katas have description with broken formatting because they're doing something like this:
<p>
`Markdown`
</p>which would result in<p>`Markdown`</p>
While Markdown syntax inside HTML code needs to start with at least 2 new lines, like
<p>
`Markdown`</p>which would render properly:<p>`Markdown`</p>I'm not sure it's a Markdown rendering library bug or intended behaviour, but I've seen at least several old katas (mostly from myjinxin and matt c's) that is suffering from this problem. They need to be fixed.