website(docs): setup custom syntax highlighting, add line numbers

pull/260/head
sammyette 2023-11-30 22:00:47 -04:00
parent e81384e42c
commit f516e1bb87
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
2 changed files with 11 additions and 4 deletions

View File

@ -30,7 +30,10 @@ enableGitInfo = true
unsafe = true
[markup.highlight]
style = 'pastie'
lineNos = true
lineNumbersInTable = false
noClasses = false
codeFences = true
[author]
[author.sammyette]

View File

@ -1,11 +1,15 @@
/* Background */ .bg { background-color: #edfdff; }
/* PreWrapper */ .chroma { background-color: #edfdff; }
.chroma {
display: inline-block;
padding: 0.5em;
}
/* Background */ .bg { background-color: #F7F7F7; }
/* PreWrapper */ .chroma { background-color: #F7F7F7; }
/* Other */ .chroma .x { }
/* Error */ .chroma .err { color: #a61717; background-color: #e3d2d2 }
/* CodeLine */ .chroma .cl { }
/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .chroma .hl { background-color: #edfdff }
/* LineHighlight */ .chroma .hl { background-color: #F7F7F7 }
/* LineNumbersTable */ .chroma .lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .chroma .ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .chroma .line { display: flex; }