2020-09-12 11:57:41 +02:00
|
|
|
---
|
|
|
|
title: Configuration
|
|
|
|
weight: -10
|
|
|
|
---
|
|
|
|
|
2020-01-14 00:15:39 +01:00
|
|
|
## 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
|
|
|
|
|
|
|
|
[markup]
|
|
|
|
[markup.goldmark.renderer]
|
|
|
|
# Needed for mermaid shortcode
|
|
|
|
unsafe = true
|
|
|
|
[markup.tableOfContents]
|
|
|
|
startLevel = 1
|
|
|
|
endLevel = 9
|
|
|
|
|
2020-01-14 00:15:39 +01:00
|
|
|
[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"
|
2020-01-14 00:15:39 +01:00
|
|
|
|
|
|
|
# (Optional, default false) Render menu from data file im 'data/menu/main.yaml'.
|
|
|
|
geekdocMenuBundle = 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
|
|
|
|
|
|
|
|
# (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-17 22:45:20 +02:00
|
|
|
geekdocRepo = "https://github.com/xoxys/hugo"
|
2020-01-14 00:15:39 +01:00
|
|
|
|
2020-09-17 22:45:20 +02:00
|
|
|
# (Optional, default none) Enable 'Edit this page' links. Requires 'GeekdocRepo' param
|
2020-01-14 00:15:39 +01:00
|
|
|
# and path must point to 'content' directory of repo.
|
|
|
|
# You can also specify this parameter per page in front matter.
|
2020-09-17 22:45:20 +02:00
|
|
|
geekdocEditPath = "edit/master/exampleSite/content"
|
2020-01-14 00:15:39 +01:00
|
|
|
|
|
|
|
# (Optional, default true) Enables search function with flexsearch.
|
|
|
|
# Index is built on the fly and might slowdown your website.
|
|
|
|
geekdocSearch = false
|
2020-02-05 01:15:51 +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"
|
2020-02-05 01:15:51 +01:00
|
|
|
|
|
|
|
# (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
|
|
|
|
2020-02-27 13:38:26 +01:00
|
|
|
# (Optional, default true) Copy anchor url to clipboard on click.
|
|
|
|
geekdocAnchorCopy = true
|
2020-01-14 00:15:39 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
{{< /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
|
|
|
|
|
|
|
|
markup:
|
|
|
|
goldmark:
|
|
|
|
# Needed for mermaid shortcode
|
|
|
|
renderer:
|
|
|
|
unsafe: true
|
|
|
|
tableOfContents:
|
|
|
|
startLevel: 1
|
|
|
|
endLevel: 9
|
|
|
|
|
2020-01-14 00:15:39 +01:00
|
|
|
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 im 'data/menu/main.yaml'.
|
2020-01-14 22:42:16 +01:00
|
|
|
# See also https://geekdocs.de/usage/menus/#bundle-menu
|
2020-01-14 00:15:39 +01:00
|
|
|
geekdocMenuBundle: 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
|
|
|
|
|
|
|
|
# (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-17 22:45:20 +02:00
|
|
|
geekdocRepo: "https://github.com/xoxys/hugo-geekdoc"
|
2020-01-14 00:15:39 +01: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/master/exampleSite/content
|
|
|
|
|
|
|
|
# (Optional, default true) Enables search function with flexsearch.
|
|
|
|
# Index is built on the fly and might slowdown your website.
|
|
|
|
geekdocSearch: false
|
2020-02-05 01:15:51 +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"
|
2020-02-05 01:15:51 +01:00
|
|
|
|
|
|
|
# (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
|
|
|
|
2020-02-27 13:38:26 +01:00
|
|
|
# (Optional, default true) Copy anchor url to clipboard on click.
|
|
|
|
geekdocAnchorCopy: true
|
2020-01-14 00:15:39 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
{{< /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"
|
2020-01-14 00:15:39 +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
|
|
|
|
|
|
|
|
# Show a breadcrumb navigation bar at the top of each docs page.
|
|
|
|
geekdocBreadcrumb = false
|
|
|
|
|
|
|
|
# Set source repository location
|
2020-09-17 22:45:20 +02:00
|
|
|
geekdocRepo = "https://github.com/xoxys/hugo-geekdoc"
|
2020-01-14 00:15:39 +01:00
|
|
|
|
|
|
|
# Enable "Edit this page" links. Requires 'GeekdocRepo' param and path must point
|
|
|
|
# to 'content' directory of repo.
|
2020-09-17 22:45:20 +02:00
|
|
|
geekdocEditPath = "edit/master/exampleSite/content"
|
2020-01-14 00:15:39 +01:00
|
|
|
|
|
|
|
# Used for 'Edit this page' link, set to '.File.Path' by default.
|
|
|
|
# Can be overwritten by a path relative to 'geekdocEditPath'
|
|
|
|
geekdocFilePath =
|
|
|
|
|
|
|
|
# Set to mark page as flat section (file-tree menu only)
|
|
|
|
geekdocFlatSection = true
|
|
|
|
|
|
|
|
# Set true to hide page or section from side menu (file-tree menu only)
|
|
|
|
geekdocHidden = true
|
2020-02-27 00:08:00 +01:00
|
|
|
|
|
|
|
# Add an anchor link to headlines
|
|
|
|
geekdocAnchor = true
|
2020-01-14 00:15:39 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
{{< /tab >}}
|
|
|
|
{{< tab "YAML" >}}
|
|
|
|
|
|
|
|
```Yaml
|
|
|
|
# Set type to 'posts' if you want to render page as blogpost
|
2020-09-17 22:45:20 +02:00
|
|
|
type: "posts"
|
2020-01-14 00:15:39 +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
|
|
|
|
|
|
|
|
# Show a breadcrumb navigation bar at the top of each docs page.
|
|
|
|
geekdocBreadcrumb: false
|
|
|
|
|
|
|
|
# Set source repository location
|
2020-09-17 22:45:20 +02:00
|
|
|
geekdocRepo: "https://github.com/xoxys/hugo-geekdoc"
|
2020-01-14 00:15:39 +01:00
|
|
|
|
|
|
|
# Enable "Edit this page" links. Requires 'GeekdocRepo' param and path must point
|
|
|
|
# to 'content' directory of repo.
|
2020-09-17 22:45:20 +02:00
|
|
|
geekdocEditPath: "edit/master/exampleSite/content"
|
2020-01-14 00:15:39 +01:00
|
|
|
|
|
|
|
# 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:
|
2020-01-14 00:15:39 +01:00
|
|
|
|
|
|
|
# Set to mark page as flat section (file-tree menu only)
|
|
|
|
geekdocFlatSection: true
|
|
|
|
|
|
|
|
# Set true to hide page or section from side menu (file-tree menu only)
|
|
|
|
geekdocHidden: true
|
2020-02-27 00:08:00 +01:00
|
|
|
|
|
|
|
# Add an anchor link to headlines
|
|
|
|
geekdocAnchor: true
|
2020-01-14 00:15:39 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
{{< /tab >}}
|
|
|
|
{{< /tabs >}}
|