-
@zachleat @eleven_ty From CommonMark spec, it looks like you can have Markdown parsing inside HTML elements, with 2 empty lines before and after Markdown: spec.commonmark.org/0.29/#example-122 So, Method C should parse Markdown:
return
<div> ${content} </div>;
If Markdown-it follows the spec.