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
<ul><li><script></li><li>some text
some other text</li></ul></script>
Based on my reading of the script, documented here, the last three lines should be:
some other text
</script></li></ul>
As the </script> tag on line 4 is not a valid HTML Block start (type 7 cannot break paragraphs), it should be considered as normal text, only to be further realized as Raw HTML when processing the inline.
The text was updated successfully, but these errors were encountered:
They were already special cased to not interrupt normal paragraphs. This
fixes handling of lazy paragraphs, see
commonmark/commonmark.js#213
Add updated regression files too.
Given the following Markdown:
this implementation returns:
Based on my reading of the script, documented here, the last three lines should be:
As the
</script>
tag on line 4 is not a valid HTML Block start (type 7 cannot break paragraphs), it should be considered as normal text, only to be further realized as Raw HTML when processing the inline.The text was updated successfully, but these errors were encountered: