Stop back-ticks showing inside of in-line code styles (#10)

* Fix backticks in codeblocks

* Fix backticks in codeblocks
This commit is contained in:
Jamie 2023-05-07 16:25:46 +01:00 committed by GitHub
parent 5737d2504f
commit a43b3fdac7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,16 @@ module.exports = {
theme: {
extend: {
typography: {
DEFAULT: {
css: {
'code::before': {
content: '""'
},
'code::after': {
content: '""'
},
},
},
quoteless: {
css: {
"blockquote p:first-of-type::before": { content: "none" },
@ -92,7 +102,7 @@ module.exports = {
},
},
},
},
}
},
plugins: [
require("@tailwindcss/typography"),