-
Basically, I'm using Fira Code: code { font-family: 'Fira Code', monospace; }
@supports (font-variation-settings: normal) {
code { font-family: 'Fira Code VF', monospace; }
} and on one particular page I need to disable ligatures in order to document the behavior of various version selection operators. Right now I'm doing this: :root {
font-variant-ligatures: none;
} |
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
Nov 13, 2021
Replies: 1 comment 2 replies
-
Just add it as an inline style to your Markdown file. <style>
:root {
font-variant-ligatures: none;
}
</style> |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ofek
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just add it as an inline style to your Markdown file.