* refactor: remove jsconfig.json * chore: remove devcontainer config * refactor: migrate Hugo configuration from `hugo.yaml` to dedicated `module.toml` and `params.toml` files, and update minimum Hugo version. * refactor: migrate demo site configuration from `hugo.yaml` to `config/_default/*.toml` * feat: enable local sidebar avatar for demo site and relocate its image to demo assets. * feat: migrate demo site to Hugo Modules for theme management. * fix: wrong config folder name
25 lines
667 B
TOML
25 lines
667 B
TOML
[goldmark]
|
|
[goldmark.extensions]
|
|
[goldmark.extensions.passthrough]
|
|
enable = true
|
|
[goldmark.extensions.passthrough.delimiters]
|
|
block = [["\\[", "\\]"], ["$$", "$$"]]
|
|
inline = [["\\(", "\\)"]]
|
|
[goldmark.renderer]
|
|
## Set to true if you have HTML content inside Markdown
|
|
unsafe = true
|
|
|
|
[tableOfContents]
|
|
endLevel = 4
|
|
ordered = true
|
|
startLevel = 2
|
|
|
|
[highlight]
|
|
noClasses = false
|
|
codeFences = true
|
|
guessSyntax = true
|
|
lineNoStart = 1
|
|
lineNos = true
|
|
lineNumbersInTable = true
|
|
tabWidth = 4
|