Closed fqxp closed 3 years ago
When there are multiple strikethroughs on one line, mistletoe only generates one <del> element as a result:
<del>
$ mistletoe master mistletoe [version 0.7.2] (interactive) Type Ctrl-D to complete input, or Ctrl-C to exit. >>> ~~one~~ ~~two~~ ... <p><del>one~~ ~~two</del></p>
where I would expect two separate <del> elements:
<p><del>one</del>~~ ~~<del>two</del></p>
@fqxp, fixed by manually merging your PR #87, thank you!
When there are multiple strikethroughs on one line, mistletoe only generates one
<del>
element as a result:where I would expect two separate
<del>
elements: