Closed eloquence closed 7 years ago
Hi! I've tested this locally and also added a new test for this behavior. Please let me know if this approach has obvious unwanted side effects that I'm overlooking, or if the implementation is otherwise not desirable. Happy to follow-up and amend as needed.
Great solution. Thanks for taking care of that. Merged!
Per CommonMark (and the markdown-it implementation), syntax like
* foo *
is not valid for emphasis. So when we encounter nodes like<em> foo </em>
, we now serialize them to*foo*
.Fixes #1