Browse Source
When processing something like this: * first > quoted * second It's imperative that the list tags and blockquote tags do not become intermingled resulting in invalid output like so: <p><ul> <li>first</p> <blockquote> <p>quoted</li> <li>second</li> </ul></p> </blockquote> Instead, process the lists together with code blocks and blockquotes so that cannot happen and instead we get the correct output like so: <ul> <li>first <blockquote> <p>quoted</p> </blockquote> </li> <li>second</li> </ul> Signed-off-by: Kyle J. McKay <mackyle@gmail.com>master
Kyle J. McKay
5 years ago
1 changed files with 33 additions and 19 deletions
Loading…
Reference in new issue