40 lines
2.0 KiB
YAML
40 lines
2.0 KiB
YAML
|
# -d, --dry-run Do not write/remove any files
|
||
|
# -R, --replace-files Remove parsed files
|
||
|
# -S, --stop-on-fail Stop on first failure
|
||
|
# -W, --raise-on-warning Raise exception on parsing warning
|
||
|
# -l, --language TEXT Language code for directive names [default:
|
||
|
# en]
|
||
|
# --sphinx / --no-sphinx Load sphinx. [default: sphinx]
|
||
|
# -e, --extensions TEXT A comma-separated list of sphinx extensions
|
||
|
# to load.
|
||
|
# -dd, --default-domain TEXT Default sphinx domain [default: py]
|
||
|
# -dr, --default-role TEXT Default sphinx role [default: convert to
|
||
|
# literal]
|
||
|
# -cp, --cite-prefix TEXT Prefix to add to citation references
|
||
|
# [default: cite]
|
||
|
# --consecutive-numbering / --no-consecutive-numbering
|
||
|
# Apply consecutive numbering to ordered lists
|
||
|
# [default: consecutive-numbering]
|
||
|
# --colon-fences / --no-colon-fences
|
||
|
# Use colon fences for directives with parsed
|
||
|
# content [default: colon-fences]
|
||
|
# --dollar-math / --no-dollar-math
|
||
|
# Convert math (where possible) to dollar-
|
||
|
# delimited math [default: dollar-math]
|
||
|
# -c, --conversions PATH YAML file mapping directives -> conversions
|
||
|
# --encoding TEXT Encoding for read/write [default: utf8]
|
||
|
# --config FILE YAML file to read default configuration from
|
||
|
# -h, --help Show this message and exit.
|
||
|
language: en
|
||
|
sphinx: true
|
||
|
extensions:
|
||
|
- sphinx.ext.intersphinx
|
||
|
- sphinx.ext.todo
|
||
|
- sphinx_tabs.tabs
|
||
|
default_conversion: parse_all
|
||
|
conversions:
|
||
|
docutils.parsers.rst.directives.images.image: parse_content
|
||
|
default_domain: py
|
||
|
consecutive_numbering: true
|
||
|
colon_fences: true
|
||
|
dollar_math: true
|