hmod.cfg
This commit is contained in:
parent
8bd901296b
commit
7f6b7cc2c3
123
hmod.cfg
Normal file
123
hmod.cfg
Normal file
|
@ -0,0 +1,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
|
Loading…
Reference in a new issue