fix: parser pre ignore in proc_str parsers

This commit is contained in:
trisua 2025-07-26 12:54:27 -04:00
parent d9be04a6fe
commit de720d301d
2 changed files with 32 additions and 8 deletions

View file

@ -357,7 +357,7 @@ p:last-child {
ul,
ol {
margin-left: var(--pad-4);
margin: var(--pad-2) 0 var(--pad-2) var(--pad-4);
}
pre {
@ -365,6 +365,7 @@ pre {
border-left: solid 5px var(--color-primary);
background: var(--color-surface);
border-radius: var(--radius);
margin-bottom: var(--pad-4);
}
code {
@ -474,7 +475,7 @@ h3,
h4,
h5,
h6 {
margin: 0;
margin: var(--pad-4) 0;
font-weight: 700;
width: -moz-max-content;
position: relative;
@ -645,6 +646,10 @@ blockquote {
color: var(--color-green) !important;
}
.hljs-link {
color: var(--color-link) !important;
}
.CodeMirror-scroll {
height: 100% !important;
}