Add markdown support

This commit is contained in:
cytopia 2018-03-10 12:04:11 +01:00
parent 10459db183
commit a5f7e4885d
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2

View File

@ -48,8 +48,8 @@ templates_path = ['_templates']
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = ['.rst', '.md']
#source_suffix = '.rst'
# The master toctree document.
master_doc = 'index'
@ -106,6 +106,12 @@ html_static_path = ['_static']
htmlhelp_basename = 'devilboxdoc'
# -- Options for Markdown output ------------------------------------------------
source_parsers = {
'.md': CommonMarkParser,
}
# -- Options for LaTeX output ------------------------------------------------
latex_elements = {