X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=docs%2Fconf.py;h=f3332c9a2c58bbcb04ba3eb650560dfca766354a;hb=bbc0867b6322d63cd35dda8e7a836566d93f1f16;hp=17b4b786c3f5727a8e06ea254c0adb956dfac394;hpb=06dcd45ff81e06bc8cf40ed487c0b2652d346a5a;p=vpp.git diff --git a/docs/conf.py b/docs/conf.py index 17b4b786c3f..f3332c9a2c5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,13 +19,13 @@ # -- Project information ----------------------------------------------------- project = u'Vector Packet Processor' -copyright = u'2018, John DeNisco' +copyright = u'2018, Linux Foundation' author = u'John DeNisco' # The short X.Y version -version = u'' +version = u'19.08' # The full version, including alpha/beta/rc tags -release = u'0.1' +release = u'01' # -- General configuration --------------------------------------------------- @@ -40,6 +40,8 @@ release = u'0.1' extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.viewcode', + 'recommonmark', + 'sphinx_markdown_tables' ] # Add any paths that contain templates here, relative to this directory. @@ -48,10 +50,11 @@ templates_path = ['_templates'] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # -source_suffix = ['.rst', '.md'] -source_parsers = { - '.md': 'recommonmark.parser.CommonMarkParser', -} +source_suffix = { + '.rst': 'restructuredtext', + '.md': 'markdown' + } + # The master toctree document. master_doc = 'index'