-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathpoxy.toml
97 lines (72 loc) · 2.87 KB
/
poxy.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
# this is a config file for Poxy - a Doxygen + m.css front-end written in Python.
# https://github.com/marzer/poxy
#
# config reference: https://github.com/marzer/poxy/wiki/Configuration-options
name = 'toml++'
author = 'Mark Gillard'
description = 'TOML for C++'
cpp = 17
github = 'marzer/tomlplusplus'
license = [ 'MIT', 'https://github.com/marzer/tomlplusplus/blob/master/LICENSE' ]
twitter = 'marzer8789'
sponsor = 'https://github.com/sponsors/marzer'
show_includes = false
changelog = true
logo = 'images/logo.svg'
favicon = 'images/favicon.ico'
navbar = [ 'namespaces', 'annotated' ]
theme = 'dark'
extra_files = [
'images/badge-awesome.svg',
'images/badge-TOML.svg',
'images/badge-gitter.svg',
]
[warnings]
enabled = true
treat_as_errors = false
undocumented = true
[sources]
paths = [ 'pages' ]
recursive_paths = [ '../include' ]
patterns = [ '*.h', '*.hpp', '*.dox', '*.md' ]
strip_paths = [ '../include', 'pages' ]
[images]
paths = [ 'images' ]
[macros]
'TOML_ASYMMETRICAL_EQUALITY_OPS(...)' = 'static_assert(true)'
'TOML_ABI_NAMESPACE_START(...)' = 'static_assert(true)'
'TOML_ABI_NAMESPACE_BOOL(...)' = 'static_assert(true)'
[meta_tags]
'google-site-verification' = 'gbtcNgKlNiPSMKkYMw4zWFVWGPH_oU93m9n_-nb4qK8'
[code_blocks]
macros = [ 'TOML_[A-Z0-9_]+?', 'print_value' ]
[badges]
'1. TOML v1.0.0' = [
'badge-TOML.svg',
'https://toml.io/en/v1.0.0'
]
'2. Mentioned in Awesome C++' = [
'badge-awesome.svg',
'https://github.com/fffaraz/awesome-cpp'
]
'3. Gitter' = [
'badge-gitter.svg',
'https://gitter.im/marzer/tomlplusplus'
]
[autolinks]
'(?:toml::)?date[_-]times?' = 'structtoml_1_1date__time.html'
'(?:toml::)?default[_ ]formatters?' = 'classtoml_1_1default__formatter.html'
'(?:toml::)?json[_ ]formatters?' = 'classtoml_1_1json__formatter.html'
'(?:toml::)?node[_ ]views?' = 'classtoml_1_1node__view.html'
'(?:toml::)?parse[_ ]errors?' = 'classtoml_1_1parse__error.html'
'(?:toml::)?parse[_ ]results?' = 'classtoml_1_1parse__result.html'
'(?:toml::)?path[_ ]components?' = 'classtoml_1_1path__component.html'
'(?:toml::)?source[_ ]positions?' = 'structtoml_1_1source__position.html'
'(?:toml::)?source[_ ]regions?' = 'structtoml_1_1source__region.html'
'(?:toml::)?time[_ ]offsets?' = 'structtoml_1_1time__offset.html'
'(?:toml::)?toml[_ ]formatters?' = 'classtoml_1_1toml__formatter.html'
'(?:toml::)?yaml[_ ]formatters?' = 'classtoml_1_1yaml__formatter.html'
'toml::dates?' = 'structtoml_1_1date.html'
'toml::keys?' = 'classtoml_1_1key.html'
'toml::times?' = 'structtoml_1_1time.html'
'toml::values?' = 'classtoml_1_1value.html'