Compare commits

...

2 Commits

Author SHA1 Message Date
quenousimporte d77defe68e change code colors 2024-03-22 15:54:17 +01:00
quenousimporte 87a2cbc949 add keyword for python 2024-03-22 15:52:12 +01:00
2 changed files with 4 additions and 3 deletions

View File

@ -1669,7 +1669,8 @@ function escapeHtml(unsafe) {
var languagekeywords = {
"sql": ["select", "from", "where", "and", "or", "set", "declare"],
"js": ["var", "for", "if", "else"],
"zsh": ["sudo"]
"zsh": ["sudo"],
"python": ["molecule"]
}
function currentline()

View File

@ -168,8 +168,8 @@ body::-webkit-scrollbar-thumb {
/* colors */
.color-code {
color:lightgray;
background-color:var(--black);
color:var(--black);
background-color:lightgrey;
}
.color-heading-mark {