-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLumpy.toml
More file actions
42 lines (37 loc) · 1.05 KB
/
Copy pathLumpy.toml
File metadata and controls
42 lines (37 loc) · 1.05 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
# You can have multiple [[documents]] sections in a file
# name is Optional, defaults to path with any trailing / stripped..
# All other options are currently required.
[[documents]]
title = "Example"
file_name = "examples"
authors = ["matt rice <ratmice@gmail.com>"]
# Paths will be output in the order given
src_dirs = ["examples"]
output_dir = "docs_out/"
output_formats = ["tex", "pdf", "html"]
comment_format = "cmark"
# Some Silly tests for output_formats.
[[documents]]
title = "Example"
file_name = "onlypdf"
authors = ["matt rice <ratmice@gmail.com>"]
src_dirs = ["examples"]
output_dir = "docs_out/"
output_formats = ["pdf"]
comment_format = "cmark"
[[documents]]
title = "Example"
file_name = "onlytex"
authors = ["matt rice <ratmice@gmail.com>"]
src_dirs = ["examples"]
output_dir = "docs_out/"
output_formats = ["tex"]
comment_format = "cmark"
[[documents]]
title = "Multi Author"
file_name = "multi-author"
authors = ["Author One", "Author Two"]
src_dirs = ["examples"]
output_dir = "docs_out/"
output_formats = ["tex", "pdf", "html"]
comment_format = "cmark"