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
Describe the bug Tailwind styling messes up PrismJS-highlighted TOML code
To Reproduce
Enable PrismJS
Write TOML snippet in note, e.g:
```toml [root] foo = "bar" ```
See invalid formatting:
Expected behavior
Should be rendered as:
Additional context
The PrismJS generated HTML looks like this:
With the culprit being the table class that Tailwind also defines.
table
PrismJS defers to overriding the Tailwind styling, as that's what messing this up: PrismJS/prism#2443 (comment)
But how do I change the Tailwind class in Emanote?
The text was updated successfully, but these errors were encountered:
Workaround for Prism.js and Tailwind CSS both using table class (sr…
a85900b
…id#320).
51de33c
Workaround for Prism.js and Tailwind CSS both using table class (#320…
6b5215e
…) (#396) Co-authored-by: Sridhar Ratnakumar <[email protected]>
2f6ae10
…id#320) (srid#396) Co-authored-by: Sridhar Ratnakumar <[email protected]>
Successfully merging a pull request may close this issue.
Describe the bug
Tailwind styling messes up PrismJS-highlighted TOML code
To Reproduce
Enable PrismJS
Write TOML snippet in note, e.g:
See invalid formatting:
Expected behavior
Should be rendered as:
Additional context
The PrismJS generated HTML looks like this:
With the culprit being the
table
class that Tailwind also defines.PrismJS defers to overriding the Tailwind styling, as that's what messing this up: PrismJS/prism#2443 (comment)
But how do I change the Tailwind class in Emanote?
The text was updated successfully, but these errors were encountered: