Compare commits

...

2 Commits

2 changed files with 18 additions and 1 deletions

View File

@ -122,7 +122,23 @@ IMAGE_PROCESS = {
"card": ["scale_in 350 100% True"] "card": ["scale_in 350 100% True"]
} }
# enable smarty extension and configure it to substitute quotation marks
MARKDOWN = {
'extension_configs': {
'markdown.extensions.codehilite': {'css_class': 'highlight'},
'markdown.extensions.extra': {},
'markdown.extensions.meta': {},
'smarty': {
'substitutions': {
'left-single-quote': '‚',
'right-single-quote': '‘',
'left-double-quote': '„',
'right-double-quote': '“'
}
},
},
'output_format': 'html5',
}
############################################################################### ###############################################################################

View File

@ -208,6 +208,7 @@ h1, h2, h3, h4, h5, h6 {
>summary:not([role]) { >summary:not([role]) {
background-color: inherit; background-color: inherit;
border: none; border: none;
padding-top: var(--pico-form-element-spacing-vertical);
} }
} }