How to prevent code blocks from displaying syntax tags ? #1150
-
see it, how need i do can prevent it show ? |
Beta Was this translation helpful? Give feedback.
Answered by
Mister-Hope
Nov 1, 2022
Replies: 1 comment
-
Add this in your div[class*='language-']::before {
display: none;
} If you only want to hide some extension, (e.g.: hide sh) div[class*='language-' data-ext='sh']::before {
display: none;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Mister-Hope
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this in your
index.scss
If you only want to hide some extension, (e.g.: hide sh)