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
With markdown-it-attrs, a paragraph element is styled like so:
# some heading This is a paragraph {.some-class-name}
<h1>some heading</h1> <p class="some-class-name">This is a paragraph</p>
However, in a container, the attribute is swallowed or not applied:
::: my-container # some heading This is a paragraph {.some-class-name} :::
<div class="my-container"> <h1>some heading</h1> <p>This is a paragraph</p> </div>
Strangely, other methods of using markdown-it-attrs works fine, eg, spans:
::: my-container This is a paragraph [this is a span]{.some-class-name} :::
<div class="my-container"> <p>This is a paragraph <span class="some-class-name">this is a span</span></p> </div>
The text was updated successfully, but these errors were encountered:
Sorry, can't help with third party plugins. You'd better ask markdown-it-attrs author.
markdown-it-attrs
Sorry, something went wrong.
markdown-it-container
No branches or pull requests
With markdown-it-attrs, a paragraph element is styled like so:
# some heading This is a paragraph {.some-class-name}
However, in a container, the attribute is swallowed or not applied:
::: my-container # some heading This is a paragraph {.some-class-name} :::
Strangely, other methods of using markdown-it-attrs works fine, eg, spans:
The text was updated successfully, but these errors were encountered: