css cleanup, added downloads page

This commit is contained in:
ngn
2024-01-18 20:01:30 +03:00
parent 1e9893cfc2
commit d33b18557e
19 changed files with 284 additions and 160 deletions

View File

@ -34,6 +34,7 @@ func ParseMarkdown(md string) string {
ext |= blackfriday.BackslashLineBreak
ext |= blackfriday.Strikethrough
ext |= blackfriday.Tables
ext |= blackfriday.NoEmptyLineBeforeBlock
return string(blackfriday.Run([]byte(md), blackfriday.WithExtensions(ext)))
}