We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Markdown lists both within and immediately after LaTeX environments cause the latter to get no <ul> wrapper
<ul>
\begin{definition} - Inside bullet - Inside bullet \end{definition} Some text: - Outside bullet - Outside bullet
Example post
Investigating more, this is about interactions between HTML and Markdown parsing. Consider:
<blockquote> * Hello world </blockquote> * item * item
The Markdown parser has been told to ignore the <blockquote>s, so doesn't realize that the </blockquote> terminates the list.
<blockquote>
</blockquote>
Perhaps we need to grab HTML blocks but then run the insides through Markdown, instead of just treating them raw.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What's wrong?
Markdown lists both within and immediately after LaTeX environments cause the latter to get no
<ul>
wrapperHow to Reproduce
Example post
Root issue
Investigating more, this is about interactions between HTML and Markdown parsing. Consider:
The Markdown parser has been told to ignore the
<blockquote>
s, so doesn't realize that the</blockquote>
terminates the list.Perhaps we need to grab HTML blocks but then run the insides through Markdown, instead of just treating them raw.
The text was updated successfully, but these errors were encountered: