Skip to content

Commit efc85d6

Browse files
committed
CommonMark is now an extra and processing should go through without it.
1 parent 5d3a9c3 commit efc85d6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/extend.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You can add extra content or even replace some parts of the documentation genera
2020
any directives you usually use.
2121

2222

23-
Also, there is an option to insert custom content into a specific argument/option/subcommand/argument-group description. Just create a name:definition pair, where the name is an argument/option/subcommand/argument-group name and the definition is any reStructured markup. Changes to options/arguments appearing in multiple action groups can either be targetted (i.e., only one instance of the argument is changed) or general (i.e., all instances are modified).::
23+
Also, there is an option to insert custom content into a specific argument/option/subcommand/argument-group description. Just create a name:definition pair, where the name is an argument/option/subcommand/argument-group name and the definition is any reStructured markup. Changes to options/arguments appearing in multiple action groups can either be targeted (i.e., only one instance of the argument is changed) or general (i.e., all instances are modified).::
2424

2525
.. argparse::
2626
:module: my.module

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ def getVersion():
3737
'Topic :: Software Development :: Documentation'
3838
],
3939
install_requires=[
40-
'sphinx>=1.2.0',
41-
'CommonMark'
40+
'sphinx>=1.2.0'
4241
],
4342
extras_require={
44-
'dev': ['pytest', 'sphinx_rtd_theme']
43+
'dev': ['pytest', 'sphinx_rtd_theme'],
44+
'markdown': ['CommonMark>=0.5.6']
4545
}
4646
)

0 commit comments

Comments
 (0)