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
Would it be possible to add classes to code blocks as well?
Currently when I try this:
{:.foo} ``` test ```
It will result in this html:
<div class="foo"> </div> <pre><code>test </code></pre>
The text was updated successfully, but these errors were encountered:
@dhbradshaw, what do you think?
Sorry, something went wrong.
@pkaminski : that makes sense.
@TethysSvensson That makes sense. Are you open to creating a pr?
I principle yes, but I have a bit too much on my plate right now.
For now I solved my problem by writing CSS that hides the div.foo object and applies some styling to the pre block that comes after the div.foo.
div.foo
pre
No branches or pull requests
Would it be possible to add classes to code blocks as well?
Currently when I try this:
It will result in this html:
The text was updated successfully, but these errors were encountered: