Skip to content

Commit

Permalink
[Doc] Fix rendering of Markdown docs, e.g. R doc (#5821)
Browse files Browse the repository at this point in the history
  • Loading branch information
hcho3 authored Jun 22, 2020
1 parent 8104f10 commit dcff96e
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from sh.contrib import git
import urllib.request
from urllib.error import HTTPError
from recommonmark.parser import CommonMarkParser
import sys
import re
import os
Expand Down Expand Up @@ -89,7 +88,8 @@
'sphinx.ext.napoleon',
'sphinx.ext.mathjax',
'sphinx.ext.intersphinx',
'breathe'
'breathe',
'recommonmark'
]

graphviz_output_format = 'png'
Expand All @@ -104,10 +104,6 @@
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

source_parsers = {
'.md': CommonMarkParser,
}

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
source_suffix = ['.rst', '.md']
Expand Down

0 comments on commit dcff96e

Please sign in to comment.