aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ext_depends/D-YAML/hmod.cfg
blob: 41badb202bbd957a7ce98dc6dd983e7a481daaf3 (plain)
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# This file contains configuration options for harbored-mod (hmod).
#
# By default, hmod loads configuration from file 'hmod.cfg' in the directory from where
# hmod is running, if such file exists. These configuration options can also be passed
# as command-line options for hmod, overriding contents of the config file, if any,
# with the exception of options that allow multiple values (such as 'exclude' or
# 'macros') where the values specified as command-line options are *added* to the values
# in config file.



# Source code files or directories to document. Specify more than once to document more
# files/directories, e.g:
#
#   sources = ./sources
#   sources = ./thirdparty
#
# This will document both the source code in the ./source/ and ./thirdparty/ directories.
#
# For DUB (http://code.dlang.org) projects, './sources' is usually a good setting here.
source = ./source/dyaml


# Directory where the generated documentation will be written.
output-directory = ./doc/html/api


# Modules or packages to exclude from generated documentation. Specify more than once to
# exclude more modules/packages, e.g:
#
#   exclude = tharsis.util
#   exclude = tharsis.entity.gamestate
#
# This will exclude both the package (or module) tharsis.util and module (or package)
# tharsis.entity.gamestate .

exclude = dyaml.all
exclude = dyaml.anchor
exclude = dyaml.composer
exclude = dyaml.emitter
exclude = dyaml.encoding
exclude = dyaml.escapes
exclude = dyaml.event
exclude = dyaml.fastcharsearch
exclude = dyaml.flags
exclude = dyaml.nogcutil
exclude = dyaml.parser
exclude = dyaml.queue
exclude = dyaml.reader
exclude = dyaml.scanner
exclude = dyaml.serializer
exclude = dyaml.streamcompat
exclude = dyaml.tag
exclude = dyaml.tagdirective
exclude = dyaml.testcommon
exclude = dyaml.testcompare
exclude = dyaml.testconstructor
exclude = dyaml.testemitter
exclude = dyaml.testerrors
exclude = dyaml.testinputoutput
exclude = dyaml.testreader
exclude = dyaml.testrepresenter
exclude = dyaml.testresolver
exclude = dyaml.testtokens
exclude = dyaml.token
exclude = dyaml.unused
exclude = dyaml.zerostring

# DDoc+markdown source of the main page of your documentation. Currently the main page is
# blank by default; this can be used to fill it with something useful.

index =


# DDoc+markdown source of additional content to add to the table of contents sidebar.
# Useful e.g. to add links to tutorials.

toc-additional =


# CSS file to use for styling. Can be used to replace the default style.
# To create a new style, you can start by generating the default style file with
# 'hmod --generate-css CSS_OUT_FILE' (CSS_OUT_FILE is name the generated file will have)
# and then modifying the CSS to get the desired style.

css =


# File to load DDoc macros from. Can be used to override builtin macros or add new ones.
# Can be specified more than once to use multiple macro files, e.g.:
#
#   macros = macros.ddoc
#   macros = moremacros.ddoc


macros =

# Additional config file to load, if needed. Configuration options in specified file will
# override or add to any options specified before this line, and will be overridden by
# any options after this line. Think of it as including the config file in this file.

config =



#---------------------------------------------------------------------------
# Configuration options **only** useful for harbored-mod testing
#---------------------------------------------------------------------------
# Uncommenting these will result in printing help information; only useful for testing.
#
# # Print help message.
#
# help
#
#
# # Generate default CSS file and write it to specified file.
# generate-css = hmod-style.css
#
#
# # Generate default config file and write it to 'hmod.cfg'.
#
# generate-cfg