-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhugo.yaml
More file actions
104 lines (95 loc) · 2.21 KB
/
hugo.yaml
File metadata and controls
104 lines (95 loc) · 2.21 KB
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
baseURL: "https://calcmark.org/"
languageCode: en-us
title: CalcMark
# Disable features not needed for a docs site
disableKinds:
- taxonomy
- term
- RSS
# Auto "last updated" dates from git history
enableGitInfo: true
# Generate JSON search index alongside HTML
outputs:
home:
- HTML
- JSON
params:
description: "Calculations embedded in Markdown documents."
githubURL: "https://github.com/CalcMark/go-calcmark"
larkURL: "https://lark.calcmark.org"
# Version is injected at build time via HUGO_PARAMS_version environment variable.
# Falls back to "dev" for local builds.
version: "dev"
markup:
goldmark:
renderer:
unsafe: true
highlight:
noClasses: false
codeFences: true
guessSyntax: false
tabWidth: 4
tableOfContents:
startLevel: 2
endLevel: 3
ordered: false
menus:
main:
- name: Docs
url: /docs/
weight: 10
- name: Larky
url: /larky/
weight: 25
- name: GitHub
url: https://github.com/CalcMark/go-calcmark
weight: 30
params:
external: true
docs:
# ── Guides ──
- name: Guides
params: { section: true }
weight: 1
- name: Getting Started
url: /docs/getting-started/
weight: 10
- name: User Guide
url: /docs/user-guide/
weight: 20
- name: Thinking in CalcMark
url: /guides/thinking-in-calcmark/
weight: 24
- name: Understanding Measurements
url: /guides/understanding-measurements/
weight: 26
# ── Reference ──
- name: Reference
params: { section: true }
weight: 30
- name: Language Reference
url: /docs/language-reference/
weight: 31
- name: Examples
identifier: sidebar-examples
url: /docs/examples/
weight: 32
- name: Agents
url: /docs/agent-integration/
weight: 33
- name: Go Package
url: /docs/go-package/
weight: 34
# ── Apps ──
- name: Apps
params: { section: true }
weight: 40
- name: The Editor
url: /docs/editor/
weight: 41
- name: Command Line
url: /docs/cli-reference/
weight: 42
- name: Configuration
url: /docs/configuration/
weight: 43