Unverified Commit ebca7860 authored by Rhett Ying's avatar Rhett Ying Committed by GitHub
Browse files

[Doc] disable include/exclude_patterns

parent 6b3891cb
...@@ -75,6 +75,7 @@ language = None ...@@ -75,6 +75,7 @@ language = None
# directories to ignore when looking for source files. # directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path. # This pattern also affects html_static_path and html_extra_path.
exclude_patterns = [] exclude_patterns = []
'''
if dglbackend == "mxnet": if dglbackend == "mxnet":
include_patterns = ['api/python/nn-mxnet*'] include_patterns = ['api/python/nn-mxnet*']
elif dglbackend == "tensorflow": elif dglbackend == "tensorflow":
...@@ -82,6 +83,7 @@ elif dglbackend == "tensorflow": ...@@ -82,6 +83,7 @@ elif dglbackend == "tensorflow":
else: else:
# pytorch # pytorch
exclude_patterns = ['api/python/nn-tensorflow*', 'api/python/nn-mxnet*'] exclude_patterns = ['api/python/nn-tensorflow*', 'api/python/nn-mxnet*']
'''
# The name of the Pygments (syntax highlighting) style to use. # The name of the Pygments (syntax highlighting) style to use.
pygments_style = None pygments_style = None
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment