How to prevent code blocks from displaying syntax tags ? #1150
|
see it, how need i do can prevent it show ? |
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;
} |
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.scssIf you only want to hide some extension, (e.g.: hide sh)