Skip to content

Commit

Permalink
markdown support
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Jun 17, 2016
1 parent e51dfc8 commit 2f18e49
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,17 @@
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

from recommonmark.parser import CommonMarkParser

source_parsers = {
'.md': CommonMarkParser,
}

# 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']

# The encoding of source files.
#
Expand Down Expand Up @@ -313,7 +319,7 @@
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'x64dbg', u'x64dbg Documentation',
author, 'x64dbg', 'One line description of project.',
author, 'x64dbg', 'An open-source x64/x32 debugger for windows.',
'Miscellaneous'),
]

Expand Down

0 comments on commit 2f18e49

Please sign in to comment.