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:
authorFabian Tamp <fabian.tamp@gmail.com>2020-01-28 22:16:29 +0300
committerFabian Tamp <fabian.tamp@gmail.com>2020-01-28 22:16:29 +0300
commit8328d1f861ecd6992a6e051cc3c09bf133ffd595 (patch)
treeebf88bed75f63e805c7e6ec1bacfdd3e1e30bc01
parent5887c1b3e8a7350b353b5e47791e2e5f09039d70 (diff)
Add hugoBasicSite content to example
-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"