diff options
Diffstat (limited to 'llvm/docs/conf.py')
-rw-r--r-- | llvm/docs/conf.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/docs/conf.py b/llvm/docs/conf.py index ce7df14ac3a..0fccb50c46b 100644 --- a/llvm/docs/conf.py +++ b/llvm/docs/conf.py @@ -31,7 +31,9 @@ extensions = ['sphinx.ext.intersphinx', 'sphinx.ext.todo'] templates_path = ['_templates'] # The suffix of source filenames. -source_suffix = '.rst' +source_suffix = ['.rst', '.md'] + +source_parsers = {'.md': 'recommonmark.parser.CommonMarkParser'} # The encoding of source files. #source_encoding = 'utf-8-sig' |