From 5210e502617ec5cd87a31689b94425746255877c Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 12 Sep 2020 18:34:13 +0200 Subject: [PATCH] fix spellchecking --- .dictionary | 4 +++ exampleSite/content/posts/getting-started.md | 38 ++++++++++++++++---- 2 files changed, 36 insertions(+), 6 deletions(-) diff --git a/.dictionary b/.dictionary index 41ec0e6..afc6aa6 100644 --- a/.dictionary +++ b/.dictionary @@ -10,3 +10,7 @@ backticks emojify img JSON +SVG +pre-processor +pre-build +submodule diff --git a/exampleSite/content/posts/getting-started.md b/exampleSite/content/posts/getting-started.md index 83577ab..d2fd97a 100644 --- a/exampleSite/content/posts/getting-started.md +++ b/exampleSite/content/posts/getting-started.md @@ -85,11 +85,38 @@ To prepare your new site environment just a few steps are required: # Needed for mermaid shortcodes [markup] [markup.goldmark.renderer] - # Needed for mermaid shortcode unsafe = true [markup.tableOfContents] startLevel = 1 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 = . = 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. @@ -148,10 +175,9 @@ disablePathToLower = true enableGitInfo = true [markup] - [goldmark] - [renderer] + [markup.goldmark.renderer] unsafe = true - [tableOfContents] + [markup.tableOfContents] startLevel = 1 endLevel = 9 @@ -160,11 +186,11 @@ enableGitInfo = true tag = tags [mediaTypes] - ["application/atom+xml"] + [mediaTypes."application/atom+xml"] suffixes = ["xml"] [outputFormats] - [Atom] + [outputFormats.Atom] # https://validator.w3.org/feed/docs/atom.html#whatIsAtom name = "Atom" mediaType = "application/atom+xml"