Skip to content

Commit

Permalink
Add Markdown support
Browse files Browse the repository at this point in the history
  • Loading branch information
mhilbrunner committed May 22, 2018
1 parent ac52d52 commit ce9817f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))

from recommonmark.parser import CommonMarkParser

# -- General configuration ------------------------------------------------

Expand All @@ -40,7 +41,12 @@
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'

source_parsers = {
'.md': CommonMarkParser,
}

source_suffix = ['.rst', '.md']

# The master toctree document.
master_doc = 'index'
Expand Down Expand Up @@ -164,6 +170,3 @@
author, 'aiphilos', 'One line description of project.',
'Miscellaneous'),
]



0 comments on commit ce9817f

Please sign in to comment.