Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/capnfabs/paperesque.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--exampleSite/config.toml15
1 files changed, 14 insertions, 1 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index d850c0c..b30cc0f 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -8,6 +8,15 @@ copyright = "© 2011-2020 Fabian Tamp"
# Hugo Themes; you almost certainly don't want this on your production site
buildDrafts = true
+[markup]
+ # This is the default from Hugo 0.60.0 onwards, but we're setting config
+ # for it below, so make it explicit
+ defaultMarkdownHandler = "goldmark"
+
+# Required to render HTML tags in the hugoExampleSite examples.
+[markup.goldmark.renderer]
+ unsafe = true
+
# I can't remember if this is required for syntax highlighting or not.
pygmentsUseClasses = true
@@ -32,10 +41,14 @@ pygmentsUseClasses = true
url = "tags/"
[[params.menu]]
- name = "About the contents of this example site"
+ name = "About the contents of this example"
url = "about/"
[[params.menu]]
+ name = "Hugo Themes default example pages"
+ url = "tags/hugobasicsite/"
+
+[[params.menu]]
name = "Link to theme on Github"
url = "https://github.com/capnfabs/paperesque"