-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.toml
109 lines (83 loc) · 2.13 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
#
# SPDX-License-Identifier: AGPL-3.0-only
################################### Default Configuration ############################
baseurl = "https://hedgedoc.org/"
title = "HedgeDoc - Collaborative markdown editor"
enableEmoji = true
# post excert
summarylength = "20"
# google analytics
googleAnalytics = "" # Ex: UA-123-45
# disable language
disableLanguages = [] # disable language from here
enableRobotsTXT = true
###################################### Navigation ######################################
# homepage section menu
[[menu.main]]
name = "Demo"
URL = "/demo/"
weight = 1
[[menu.main]]
name = "Documentation"
URL = "https://docs.hedgedoc.org"
weight = 2
[[menu.main]]
name = "Download"
URL = "/latest-release/"
weight = 3
[[menu.main]]
name = "Source Code"
URL = "https://git.hedgedoc.org"
weight = 4
[[menu.main]]
name = "Forum"
URL = "https://community.hedgedoc.org"
weight = 5
[[menu.main]]
name = "Matrix"
URL = "https://chat.hedgedoc.org"
weight = 6
[[menu.main]]
name = "FAQ"
URL = "https://docs.hedgedoc.org/faq/"
weight = 7
# footer menu
[[menu.footer]]
name = "Source Code"
URL = "https://git.hedgedoc.org"
weight = 1
[[menu.footer]]
name = "Team"
URL = "/team/"
weight = 2
[[menu.footer]]
name = "Help translating"
URL = "https://translate.hedgedoc.org"
weight = 3
[[menu.footer]]
name = "Mastodon"
URL = "https://social.hedgedoc.org"
weight = 4
[[menu.footer]]
name = "Privacy Policy"
URL = "/privacy-policy/"
weight = 5
########################### Default parameters ##########################
[params]
logo = "images/banner/hedgedoc_banner_color_horizontal.svg"
logo_width = "100px"
logo_height = "25px"
# Meta data
description = "Ideas grow better together"
author = "The HedgeDoc developers"
################################### English language #####################################
[Languages.en]
languageName = "En"
languageCode = "en-us"
contentDir = "content/english"
weight = 1
# copyright
copyright = "By the HedgeDoc developers. Made with ![love](/images/heart.svg)️ and [Hugo](https://gohugo.io/)."
[markup.goldmark.renderer]
unsafe= true