mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-24 14:00:42 +00:00
fix spellchecking
This commit is contained in:
parent
1a5d341913
commit
5210e50261
@ -10,3 +10,7 @@ backticks
|
|||||||
emojify
|
emojify
|
||||||
img
|
img
|
||||||
JSON
|
JSON
|
||||||
|
SVG
|
||||||
|
pre-processor
|
||||||
|
pre-build
|
||||||
|
submodule
|
||||||
|
@ -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"
|
||||||
|
Loading…
Reference in New Issue
Block a user