-
Notifications
You must be signed in to change notification settings - Fork 274
Closed
Labels
Description
Events from pulldown-cmark:
"\n <foo>" -> [
Html(Boxed("<foo>"))
]Events from commonmark.js:
"\n <foo>" -> [
Html(Boxed(" <foo>"))
]XML from commonmark.js:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE document SYSTEM "CommonMark.dtd">
<document xmlns="http://commonmark.org/xml/1.0">
<html_block> <foo></html_block>
</document>The says that a first line of a HTML block can start after three optional spaces. I guess they're trimmed in pulldown-cmark?
Reactions are currently unavailable