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
The example given:
<btf-markdown> #Markdown directive *It works!* </btf-markdown>
renders as HTML:
<pre><code>#Markdown directive *It works!* </code></pre>
But, I believe the intention is that it should render as:
<h1 id="markdowndirectiveitworks">Markdown directive<em>It works!</em></h1>
The reason that it renders as <pre><code>...</pre></code> is because the lines inside the HTML element are prefixed with four spaces.
<pre><code>...</pre></code>
The example should read:
<btf-markdown>#Markdown directive *It works!*</btf-markdown>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The example given:
renders as HTML:
But, I believe the intention is that it should render as:
<h1 id="markdowndirectiveitworks">Markdown directive<em>It works!</em></h1>
The reason that it renders as
<pre><code>...</pre></code>
is because the lines inside the HTML element are prefixed with four spaces.The example should read:
The text was updated successfully, but these errors were encountered: