-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathxrst.toml
109 lines (101 loc) · 1.83 KB
/
xrst.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-License-Identifier: AGPL-3.0-or-later
# SPDX-FileCopyrightText: University of Washington <https://www.washington.edu>
# SPDX-FileContributor: 2021-22 Bradley M. Bell
# ----------------------------------------------------------------------------
#
[project_name]
data = 'at_cascade'
[directory]
project_directory = '.'
html_directory = 'build/html'
rst_directory = 'build/rst'
tex_directory = 'build/tex'
[root_file]
default = 'at_cascade.xrst'
[include_all]
rst_epilog = ''
rst_prolog = '''
.. |space| unicode:: 0xA0
.. |tab| replace:: |space| |space| |space| |space|
.. |newline| raw:: html
<br/>
'''
latex_macro = [
'\newcommand{\B}[1]{ {\bf #1} }' ,
'\newcommand{\R}[1]{ {\rm #1} }' ,
]
[heading]
# level 0, 1, 2, 3, 4,
character = [ '#', '*', '=', '-', '.', ]
overline = [ false, false, false, false, false, ]
# BEGIN_SORT_THIS_LINE_PLUS_4
[project_dictionary]
data = [
'''
cpu
csv
db
dict
dir
dismod
gaussian
int
max
mulcov
multiplier
sim
str
th
'''
]
# END_SORT_THIS_LINE_MINUS_3
[not_in_index]
data = [
# Exclude articles and prepositions
'''
a
and
by
for
of
the
that
this
to
using
''',
# Exclude rate_true(rate, a, t, n, c)
'''
rate_true\(rate,
a,
t,
n,
c\)
''',
# Exclude words that are used in many sections of the documentation.
'''
code
covariate
data
fit
n
n_i
node
nodes
parent
prior
python
random
rate
simulated
smoothing
source
syntax
table
value
y_i
''',
#
# Exclude the mm-dd headings used by the xrst release notes.
'[0-9][0-9]-[0-9][0-9]',
]