-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.madness.yml
89 lines (66 loc) · 2.3 KB
/
.madness.yml
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
# Madness configuration file
# These are the default configuration values
# You can delete any option you do not need
# path to the documentation root
path: .
# server port
port: 3000
# server listen address
bind: 0.0.0.0
# set a server root path, for example:
# base_uri: /docs
base_uri: /madness
# set the underlying markdown renderer:
# renderer: redcarpet # default renderer
# renderer: pandoc # pandoc renderer, requires pandoc command
renderer: redcarpet
# choose navigation sort order:
# sort_order: dirs_first # alphabetic directories then alphabetic files
# sort_order: mixed # alphabetic regardless of type
sort_order: dirs_first
# enable sidebar
sidebar: true
# add H1 title to files that do not have one
auto_h1: true
# append navigation to directory READMEs
auto_nav: true
# replace <!-- TOC --> in any file with its internal table of contents
# set to true to enable it with the default '## Table of Contents' caption,
# or set to any string that will be inserted before it as a caption.
auto_toc: true
# enable syntax highlighter for code snippets
highlighter: true
# enable the copy to clipboard icon for code snippets
copy_code: true
# convert [[Links]] to [Links](Links)
shortlinks: false
# generate a table of contents file with this name, for example:
# toc: Table of Contents
toc: ~
# path to theme folder, for example:
# theme: _theme
theme: ~
# enable a link to the page's source at the bottom of each page by setting
# a URL pattern here. Use '%{path}' anywhere in the string to get the
# URI-encoded path of the page.
# source_link: http://example.com/%{path}
source_link: ~
# if source_link is enabled, you can change the default link label
# source_link_label: Edit Page
source_link_label: Page Source
# if source_link is enabled, you can change its position (top / bottom)
# source_link_pos: top
source_link_pos: bottom
# open the server URL in the browser
open: false
# provide user:password for basic authentication, for example:
# auth: admin:s3cr3t
auth: false
# if auth is enabled, specify auth realm name
auth_zone: Restricted Documentation
# show files with these extensions in the navigation and search, for example:
# expose_extensions: pdf,docx,xlsx,txt
expose_extensions: ~
# exclude directories that match these regular expressions
# note that this is an array
exclude: []