-
When I use backticks to insert inline code in markdown I expect the rendered output not to include the backticks but Congo shows them. Is there a way to remove them from the output? For example this is an example of inline code using And this is what Congo does with |
Beta Was this translation helpful? Give feedback.
Answered by
dricard
Jan 30, 2024
Replies: 1 comment
-
Answered my own question with a bit of digging into the css (posted for others who might want the same thing). .prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::before {
content: "";
}
.prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::after {
content: "";
} Put that into custom.css. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dricard
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Answered my own question with a bit of digging into the css (posted for others who might want the same thing).
Put that into custom.css.