fix spellchecking

This commit is contained in:
Robert Kaussow 2020-09-12 18:34:13 +02:00
parent 1a5d341913
commit 5210e50261
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
2 changed files with 36 additions and 6 deletions

View File

@ -10,3 +10,7 @@ backticks
emojify emojify
img img
JSON JSON
SVG
pre-processor
pre-build
submodule

View File

@ -85,11 +85,38 @@ To prepare your new site environment just a few steps are required:
# Needed for mermaid shortcodes # Needed for mermaid shortcodes
[markup] [markup]
[markup.goldmark.renderer] [markup.goldmark.renderer]
# Needed for mermaid shortcode
unsafe = true unsafe = true
[markup.tableOfContents] [markup.tableOfContents]
startLevel = 1 startLevel = 1
endLevel = 9 endLevel = 9
[taxonomies]
author = authors
tag = tags
[mediaTypes]
[mediaTypes."application/atom+xml"]
suffixes = ["xml"]
[outputFormats]
[outputFormats.Atom]
# https://validator.w3.org/feed/docs/atom.html#whatIsAtom
name = "Atom"
mediaType = "application/atom+xml"
# generated file = <baseName>.<mediaType."application/atom+xml".suffixes[0]> = atom.xml
baseName = "atom"
isPlainText = false
rel = "alternate"
isHTML = false
noUgly = true
permalinkable = false
[outputFormats.outputs]
home = ["HTML", "ATOM"]
page = ["HTML"]
section = ["HTML"]
taxonomy = ["HTML"]
term = ["HTML", "ATOM"]
``` ```
5. Test your site. 5. Test your site.
@ -148,10 +175,9 @@ disablePathToLower = true
enableGitInfo = true enableGitInfo = true
[markup] [markup]
[goldmark] [markup.goldmark.renderer]
[renderer]
unsafe = true unsafe = true
[tableOfContents] [markup.tableOfContents]
startLevel = 1 startLevel = 1
endLevel = 9 endLevel = 9
@ -160,11 +186,11 @@ enableGitInfo = true
tag = tags tag = tags
[mediaTypes] [mediaTypes]
["application/atom+xml"] [mediaTypes."application/atom+xml"]
suffixes = ["xml"] suffixes = ["xml"]
[outputFormats] [outputFormats]
[Atom] [outputFormats.Atom]
# https://validator.w3.org/feed/docs/atom.html#whatIsAtom # https://validator.w3.org/feed/docs/atom.html#whatIsAtom
name = "Atom" name = "Atom"
mediaType = "application/atom+xml" mediaType = "application/atom+xml"