update config (goldmark.extensions)
adds extra extension but has to disable strikethrough extension (extra includes strikethrough)
This commit is contained in:
parent
74bcada8e1
commit
10020d8847
1 changed files with 19 additions and 13 deletions
|
@ -3,19 +3,25 @@
|
||||||
|
|
||||||
# let us put inline html into the markdown files
|
# let us put inline html into the markdown files
|
||||||
[goldmark]
|
[goldmark]
|
||||||
[goldmark.renderer]
|
[goldmark.extensions]
|
||||||
unsafe = true
|
strikethrough = false
|
||||||
|
[goldmark.extensions.extras]
|
||||||
|
[goldmark.extensions.extras.delete]
|
||||||
|
enable = true
|
||||||
|
[goldmark.extensions.extras.subscript]
|
||||||
|
enable = true
|
||||||
|
[goldmark.renderer]
|
||||||
|
unsafe = true
|
||||||
|
|
||||||
# use {.[css-class]} after a paragraph to apply styling
|
# use {.[css-class]} after a paragraph to apply styling
|
||||||
[goldmark.parser]
|
[goldmark.parser]
|
||||||
[goldmark.parser.attribute]
|
[goldmark.parser.attribute]
|
||||||
block = true
|
block = true
|
||||||
|
|
||||||
# let the theme styling apply for code blocks
|
# let the theme styling apply for code blocks
|
||||||
[highlight]
|
[highlight]
|
||||||
noClasses = false
|
noClasses = false
|
||||||
|
|
||||||
[tableOfContents]
|
|
||||||
startLevel = 2
|
|
||||||
endLevel = 4
|
|
||||||
|
|
||||||
|
[tableOfContents]
|
||||||
|
startLevel = 2
|
||||||
|
endLevel = 4
|
||||||
|
|
Loading…
Reference in a new issue