init CommonMark document construction tool

This commit is contained in:
Oceania2018 2018-08-19 09:31:36 -05:00
parent fb8558f1f8
commit 0980eb9d23

7
docs/conf.py Normal file
View file

@ -0,0 +1,7 @@
from recommonmark.parser import CommonMarkParser
source_parsers = {
'.md': CommonMarkParser,
}
source_suffix = ['.rst', '.md']