We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I have two code blocks in my markdown string. This doesn't parse properly:
```bash tns platform add ios ```
However, this one does:
```bash cd sample-Groceries ```
These are the two results:
<code>bash tns platform add android</code> <pre><code class="lang-bash">cd sample-Groceries </code></pre>
They are both in the same string, processed at the same time of the same machine...
Here you can see the whole file, markdown and html
The text was updated successfully, but these errors were encountered:
I have no problem parsing both. Provide your complete source please.
Sorry, something went wrong.
I have a similar issue using v0.3.6, for example:
<h1> H1 </h1> <h2> H2 </h2> ```html <h1> H1 </h1> <h2> H2 </h2> ``` <h1> H1 </h1> Some content
Would produce:
<h1> H1 </h1> <h2> H2 </h2> <code>html <h1> H1 </h1> <h2> H2 </h2></code> <h1> H1 </h1> <p>Some content</p>
But if you add a matching h2 after the code block:
h2
<h1> H1 </h1> <h2> H2 </h2> ```html <h1> H1 </h1> <h2> H2 </h2> ``` <h1> H1 </h1> <h2> H2 </h2> Some content
The problem goes away and you'll get a correct code block:
<p><h1> H1 </h1></p> <h2> H2 </h2> <pre><code class="lang-html"><h1> H1 </h1> <h2> H2 </h2> </code></pre> <p><h1> H1 </h1></p> <h2> H2 </h2> <p>Some content</p>
https://runkit.com/5834c46bd8fb6400141ac375/58c98b8b927973001429a666
#983
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
I have two code blocks in my markdown string. This doesn't parse properly:
However, this one does:
These are the two results:
They are both in the same string, processed at the same time of the same machine...
Here you can see the whole file, markdown and html
The text was updated successfully, but these errors were encountered: