-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.toml
52 lines (41 loc) · 1.14 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
baseURL = 'https://autify-javascript-snippets.netlify.app/'
languageCode = 'en-us'
title = 'Autify JavaScript Snippets'
theme = "hugo-geekdoc"
defaultContentLanguage = "en"
[languages.en]
languageName = "English"
contentDir = "content/en"
weight = 10
[languages.ja]
languageName = "日本語"
contentDir = "content/ja"
weight = 20
pluralizeListTitles = false
# Geekdoc required configuration
pygmentsUseClasses = true
pygmentsCodeFences = true
disablePathToLower = true
# Required if you want to render robots.txt template
enableRobotsTXT = true
# Needed for mermaid shortcodes
[markup]
[markup.goldmark.renderer]
# Needed for mermaid shortcode
unsafe = true
[markup.tableOfContents]
startLevel = 1
endLevel = 9
[markup.highlight]
style = "vs"
[taxonomies]
tag = "tags"
# Configuration for hugo-geekdoc theme
# https://geekdocs.de/usage/configuration/
[params]
geekdocRepo = "https://github.com/autifyhq/autify-javascript-snippets"
geekdocEditPath = "edit/master"
geekdocBreadcrumb = true
[params.geekdocContentLicense]
name = "Apache-2.0 License"
link = "https://github.com/autifyhq/autify-javascript-snippets/blob/master/LICENSE"