-
Notifications
You must be signed in to change notification settings - Fork 30
/
config.toml
93 lines (70 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# When built, then this is used, but we inject it
# at build time using Hugo env-vars.
baseURL = "http://localhost:1313"
# Nice stuff...
title = "Corda Documentation"
# Of course...
theme = "hugo-r3-theme"
# i18n
defaultContentLanguage = "en"
# ...so that en docs are just in /docs/... rather than /en/docs/...
defaultContentLanguageInSubdir = false
contentDir = "content/en"
# so that 'docs' doesn't appear as 'docss' etc.
pluralizeListTitles = false
# we want old-style a/b/c.html
uglyurls = true
# Change to error eventually.
refLinksErrorLevel = "WARNING"
# Don't care about these.
disableKinds = ["taxonomy", "taxonomyTerm"]
# See https://help.farbox.com/pygments.html
pygmentsCodeFences = true
pygmentsUseClasses = false
pygmentsStyle = "emacs"
# https://gohugo.io/variables/git/
enableGitInfo = true
# https://gohugo.io/templates/internal/#google-analytics
# googleAnalytics = "UA-87760032-1"
# https://gohugo.io/getting-started/configuration-markup#highlight
[markup]
[markup.highlight]
style = "tango"
[markup.goldmark]
[markup.goldmark.renderer]
# We have lots of inline HTML so need to render it.
# TODO: replace with shortcodes.
unsafe = true
# We're not using this?
[permalinks]
blog = "/blog/:section/:year/:month/:day/:slug/"
# Any params set in here override the ones above for that particular site (one site = one lang).
[languages]
[languages.en]
description = "Documentation for Corda, by R3"
languageName = "English"
# Weight used for sorting.
weight = 10
#
#[languages.fr]
#contentDir = "content/fr"
#languageName = "Français"
#weight = 20
#language_alternatives = ["en"]
#
#[languages.de]
#languageName = "Deutsche"
#weight = 30
#language_alternatives = ["en"]
[params]
github_repository = "https://github.com/corda/docs-site"
twitter = "cordablockchain"
slack = "http://slack.corda.net/"
github = "corda"
stackoverflow = "corda"
# Cue bikeshedding
default_tab = "java"
ogimage = "/images/png/corda.png"
algolia_appId = "UX2KMUWFAL"
algolia_apiKey = "1fe3367db02689b4aeebc59efad5abaf"
algolia_index = "docs.corda.net"