hugo-geekdoc/exampleSite/content/usage/configuration.md

361 lines
12 KiB
Markdown
Raw Normal View History

---
title: Configuration
weight: -10
---
{{< toc >}}
## Site configuration
{{< tabs "site-config" >}}
{{< tab "TOML" >}}
```Toml
2020-09-17 22:45:20 +02:00
baseURL = "http://localhost"
title = "Geekdocs"
theme = "hugo-geekdoc"
2020-04-15 01:10:49 +02:00
# Required to get well formatted code blocks
pygmentsUseClasses = true
pygmentsCodeFences = true
disablePathToLower = true
enableGitInfo = true
2021-09-08 21:48:31 +02:00
# Required if you want to render robots.txt template
enableRobotsTXT = true
2020-04-15 01:10:49 +02:00
[markup]
[markup.goldmark.renderer]
# Needed for mermaid shortcode
unsafe = true
[markup.tableOfContents]
startLevel = 1
endLevel = 9
2021-09-01 10:18:00 +02:00
[taxonomies]
tag = "tags"
[params]
# (Optional, default 6) Set how many table of contents levels to be showed on page.
# Use false to hide ToC, note that 0 will default to 6 (https://gohugo.io/functions/default/)
# You can also specify this parameter per page in front matter.
geekdocToC = 3
# (Optional, default static/brand.svg) Set the path to a logo for the Geekdoc
# relative to your 'static/' folder.
2020-09-17 22:45:20 +02:00
geekdocLogo = "logo.png"
# (Optional, default false) Render menu from data file in 'data/menu/main.yaml'.
2021-11-24 09:10:26 +01:00
# See also https://geekdocs.de/usage/menus/#bundle-menu.
geekdocMenuBundle = true
2021-11-24 09:10:26 +01:00
# (Optional, default false) Collapse all menu entries, can not be overwritten
# per page if enabled. Can be enabled per page via `geekdocCollapseSection`.
geekdocCollapseAllSections = true
# (Optional, default true) Show page navigation links at the bottom of each
# docs page (bundle menu only).
geekdocNextPrev = false
# (Optional, default true) Show a breadcrumb navigation bar at the top of each docs page.
# You can also specify this parameter per page in front matter.
geekdocBreadcrumb = false
2021-01-24 12:04:40 +01:00
# (Optional, default none) Set source repository location. Used for 'Edit this page' links.
# You can also specify this parameter per page in front matter.
2020-09-27 22:21:29 +02:00
geekdocRepo = "https://github.com/thegeeklab/hugo"
2020-09-17 22:45:20 +02:00
# (Optional, default none) Enable 'Edit this page' links. Requires 'GeekdocRepo' param
# and path must point to 'content' directory of repo.
# You can also specify this parameter per page in front matter.
geekdocEditPath = "edit/main/exampleSite/content"
2022-01-06 22:52:22 +01:00
# (Optional, default true) Enables search function with flexsearch.
# Index is built on the fly and might slow down your website.
geekdocSearch = false
2020-11-10 22:50:21 +01:00
# (Optional, default false) Display search results with the parent folder as prefix. This
# option allows you to distinguish between files with the same name in different folders.
2020-11-11 11:48:25 +01:00
# NOTE: This parameter only applies when 'geekdocSearch = true'.
geekdocSearchShowParent = true
2020-11-10 22:50:21 +01:00
# (Optional, default none) Add a link to your Legal Notice page to the site footer.
# It can be either a remote url or a local file path relative to your content directory.
2020-09-17 22:45:20 +02:00
geekdocLegalNotice = "https://blog.example.com/legal"
# (Optional, default none) Add a link to your Privacy Policy page to the site footer.
# It can be either a remote url or a local file path relative to your content directory.
2020-09-17 22:45:20 +02:00
geekdocPrivacyPolicy = "/privacy"
2020-02-27 00:08:00 +01:00
# (Optional, default true) Add an anchor link to headlines.
geekdocAnchor = true
2020-02-27 09:50:25 +01:00
# (Optional, default true) Copy anchor url to clipboard on click.
geekdocAnchorCopy = true
2021-02-20 21:39:31 +01:00
# (Optional, default true) Enable or disable image lazy loading for images rendered
# by the 'img' shortcode.
geekdocImageLazyLoading = true
2021-05-23 22:30:22 +02:00
# (Optional, default false) Set HTMl <base> to .Site.BaseURL if enabled. It might be required
# if a subdirectory is used within Hugos BaseURL.
# See https://developer.mozilla.org/de/docs/Web/HTML/Element/base.
geekdocOverwriteHTMLBase = false
2021-04-27 23:44:35 +02:00
# (Optional, default false) Auto-decrease brightness of images and add a slightly grayscale to avoid
# bright spots while using the dark mode.
geekdocDarkModeDim = false
# (Optional, default true) Display a "Back to top" link in the site footer.
geekdocBackToTop = true
2021-09-01 10:18:00 +02:00
# (Optional, default false) Enable or disable adding tags for post pages automatically to the navigation sidebar.
geekdocTagsToMenu = true
# (Optional, default 'title') Configure how to sort file-tree menu entries. Possible options are 'title', 'linktitle',
# 'date', 'publishdate', 'expirydate' or 'lastmod'. Every option can be used with a reverse modifier as well
# e.g. 'title_reverse'.
geekdocFileTreeSortBy = "title"
```
{{< /tab >}}
{{< tab "YAML" >}}
```Yaml
2020-04-15 01:10:49 +02:00
---
2020-09-17 22:45:20 +02:00
baseURL: "http://localhost"
title: "Geekdocs"
theme: "hugo-geekdoc"
2020-04-15 01:10:49 +02:00
# Required to get well formatted code blocks
pygmentsUseClasses: true
pygmentsCodeFences: true
disablePathToLower: true
enableGitInfo: true
2021-09-08 21:48:31 +02:00
# Required if you want to render robots.txt template
enableRobotsTXT: true
2020-04-15 01:10:49 +02:00
markup:
goldmark:
# Needed for mermaid shortcode
renderer:
unsafe: true
tableOfContents:
startLevel: 1
endLevel: 9
2021-09-01 10:18:00 +02:00
taxonomies:
tag: tags
params:
# (Optional, default 6) Set how many table of contents levels to be showed on page.
# Use false to hide ToC, note that 0 will default to 6 (https://gohugo.io/functions/default/)
# You can also specify this parameter per page in front matter.
geekdocToC: 3
# (Optional, default static/brand.svg) Set the path to a logo for the Geekdoc
# relative to your 'static/' folder.
geekdocLogo: logo.png
# (Optional, default false) Render menu from data file in 'data/menu/main.yaml'.
2021-11-24 09:10:26 +01:00
# See also https://geekdocs.de/usage/menus/#bundle-menu.
geekdocMenuBundle: true
# (Optional, default false) Collapse all menu entries, can not be overwritten
2021-11-24 09:10:26 +01:00
# per page if enabled. Can be enabled per page via `geekdocCollapseSection`.
geekdocCollapseAllSections: true
# (Optional, default true) Show page navigation links at the bottom of each
# docs page (bundle menu only).
geekdocNextPrev: false
# (Optional, default true) Show a breadcrumb navigation bar at the top of each docs page.
# You can also specify this parameter per page in front matter.
geekdocBreadcrumb: false
2021-01-24 12:04:40 +01:00
# (Optional, default none) Set source repository location. Used for 'Edit this page' links.
# You can also specify this parameter per page in front matter.
2020-09-27 22:21:29 +02:00
geekdocRepo: "https://github.com/thegeeklab/hugo-geekdoc"
# (Optional, default none) Enable "Edit this page" links. Requires 'GeekdocRepo' param
# and path must point to 'content' directory of repo.
# You can also specify this parameter per page in front matter.
geekdocEditPath: edit/main/exampleSite/content
2022-01-06 22:52:22 +01:00
# (Optional, default true) Enables search function with flexsearch.
# Index is built on the fly and might slow down your website.
geekdocSearch: false
2020-11-10 22:50:21 +01:00
# (Optional, default false) Display search results with the parent folder as prefix. This
# option allows you to distinguish between files with the same name in different folders.
2020-11-11 11:48:25 +01:00
# NOTE: This parameter only applies when 'geekdocSearch: true'.
geekdocSearchShowParent: true
2020-11-10 22:50:21 +01:00
# (Optional, default none) Add a link to your Legal Notice page to the site footer.
# It can be either a remote url or a local file path relative to your content directory.
2020-09-17 22:45:20 +02:00
geekdocLegalNotice: "https://blog.example.com/legal"
# (Optional, default none) Add a link to your Privacy Policy page to the site footer.
# It can be either a remote url or a local file path relative to your content directory.
2020-09-17 22:45:20 +02:00
geekdocPrivacyPolicy: "/privacy"
2020-02-27 00:08:00 +01:00
# (Optional, default true) Add an anchor link to headlines.
geekdocAnchor: true
2020-02-27 09:50:25 +01:00
# (Optional, default true) Copy anchor url to clipboard on click.
geekdocAnchorCopy: true
2021-02-20 21:39:31 +01:00
# (Optional, default true) Enable or disable image lazy loading for images rendered
# by the 'img' shortcode.
geekdocImageLazyLoading: true
2021-05-23 22:30:22 +02:00
# (Optional, default false) Set HTMl <base> to .Site.BaseURL if enabled. It might be required
# if a subdirectory is used within Hugos BaseURL.
# See https://developer.mozilla.org/de/docs/Web/HTML/Element/base.
geekdocOverwriteHTMLBase: false
2021-04-27 23:44:35 +02:00
# (Optional, default false) Auto-decrease brightness of images and add a slightly grayscale to avoid
# bright spots while using the dark mode.
geekdocDarkModeDim: false
# (Optional, default true) Display a "Back to top" link in the site footer.
geekdocBackToTop: true
2021-09-01 10:18:00 +02:00
# (Optional, default false) Enable or disable adding tags for post pages automatically to the navigation sidebar.
geekdocTagsToMenu: true
# (Optional, default 'title') Configure how to sort file-tree menu entries. Possible options are 'title', 'linktitle',
# 'date', 'publishdate', 'expirydate' or 'lastmod'. Every option can be used with a reverse modifier as well
# e.g. 'title_reverse'.
geekdocFileTreeSortBy: "title"
```
{{< /tab >}}
{{< /tabs >}}
## Page configuration
{{< tabs "page-config" >}}
{{< tab "TOML" >}}
```Toml
# Set type to 'posts' if you want to render page as blogpost
2020-09-17 22:45:20 +02:00
type = "posts"
2021-01-24 12:04:40 +01:00
# Set page weight to re-arrange items in file-tree menu.
weight = 10
# Set how many table of contents levels to be showed on page.
geekdocToC = 3
2020-11-11 11:48:25 +01:00
# Set a description for the current page. This will be shown in toc-trees objects.
geekdocDescription =
# Set false to hide the whole left navigation sidebar. Beware that it will make
# navigation pretty hard without adding some kind of on-page navigation.
geekdocNav = true
# Show a breadcrumb navigation bar at the top of each docs page.
geekdocBreadcrumb = false
2021-01-24 12:04:40 +01:00
# Set source repository location.
2020-09-27 22:21:29 +02:00
geekdocRepo = "https://github.com/thegeeklab/hugo-geekdoc"
# Enable "Edit this page" links. Requires 'GeekdocRepo' param and path must point
# to 'content' directory of repo.
geekdocEditPath = "edit/main/exampleSite/content"
# Used for 'Edit this page' link, set to '.File.Path' by default.
# Can be overwritten by a path relative to 'geekdocEditPath'
geekdocFilePath =
2021-01-24 12:04:40 +01:00
# Set to mark page as flat section (file-tree menu only).
geekdocFlatSection = true
2021-01-24 12:04:40 +01:00
# Set true to hide page or section from side menu (file-tree menu only).
geekdocHidden = true
2020-02-27 00:08:00 +01:00
2020-11-11 11:48:25 +01:00
# Set false to show this page as a file-tree menu entry when you want it to be hidden in the sidebar.
# NOTE: Only applies when 'geekdocHidden = true'.
geekdocHiddenTocTree = true
2021-01-24 12:04:40 +01:00
# Set to true to make a section foldable in side menu.
geekdocCollapseSection = true
2021-01-24 12:04:40 +01:00
# Add an anchor link to headlines.
2020-02-27 00:08:00 +01:00
geekdocAnchor = true
# If you have protected some pages with e.g. basic authentication you may want to exclude these pages
# from data file, otherwise information may be leaked. Setting this parameter to 'true' will exclude the
# page from search data, feeds, etc.
# WARNING: Consider hosting a standalone, fully auth-protected static page for secret information instead!
2021-05-13 15:17:18 +02:00
geekdocProtected = false
# Set 'left' (default), 'center' or 'right' to configure the text align of a page.
geekdocAlign = "left"
```
{{< /tab >}}
{{< tab "YAML" >}}
```Yaml
2021-01-24 12:04:40 +01:00
# Set type to 'posts' if you want to render page as blogpost.
2020-09-17 22:45:20 +02:00
type: "posts"
2021-01-24 12:04:40 +01:00
# Set page weight to re-arrange items in file-tree menu.
weight: 10
# Set how many table of contents levels to be showed on page.
geekdocToC: 3
2020-11-11 11:48:25 +01:00
# Set a description for the current page. This will be shown in toc-trees objects.
geekdocDescription:
# Set false to hide the whole left navigation sidebar. Beware that it will make
# navigation pretty hard without adding some kind of on-page navigation.
geekdocNav: true
# Show a breadcrumb navigation bar at the top of each docs page.
geekdocBreadcrumb: false
2021-01-24 12:04:40 +01:00
# Set source repository location.
2020-09-27 22:21:29 +02:00
geekdocRepo: "https://github.com/thegeeklab/hugo-geekdoc"
# Enable "Edit this page" links. Requires 'GeekdocRepo' param and path must point
# to 'content' directory of repo.
geekdocEditPath: "edit/main/exampleSite/content"
# Used for 'Edit this page' link, set to '.File.Path' by default.
# Can be overwritten by a path relative to 'geekdocEditPath'
2020-01-14 00:30:58 +01:00
geekdocFilePath:
2021-01-24 12:04:40 +01:00
# Set to mark page as flat section (file-tree menu only).
geekdocFlatSection: true
2021-01-24 12:04:40 +01:00
# Set true to hide page or section from side menu (file-tree menu only).
geekdocHidden: true
2020-02-27 00:08:00 +01:00
2020-11-11 11:48:25 +01:00
# Set false to show this page as a file-tree menu entry when you want it to be hidden in the sidebar.
# NOTE: Only applies when 'geekdocHidden: true'.
geekdocHiddenTocTree: true
2021-01-24 12:04:40 +01:00
# Set to true to make a section foldable in side menu.
geekdocCollapseSection: true
2021-01-24 12:04:40 +01:00
# Add an anchor link to headlines.
2020-02-27 00:08:00 +01:00
geekdocAnchor: true
# If you have protected some pages with e.g. basic authentication you may want to exclude these pages
# from data file, otherwise information may be leaked. Setting this parameter to 'true' will exclude the
# page from search data, feeds, etc.
# WARNING: Consider hosting a standalone, fully auth-protected static page for secret information instead!
geekdocProtected: false
# Set 'left' (default), 'center' or 'right' to configure the text align of a page.
geekdocAlign: "left"
```
{{< /tab >}}
{{< /tabs >}}