"src/git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "9664cdffd3f2e4e668fc7a1049260fae93f0f03d"
Unverified Commit fcf9663e authored by Rhett Ying's avatar Rhett Ying Committed by GitHub
Browse files

[Doc] fix regular expression for include/exclude_patterns

parent 84fccf57
...@@ -76,12 +76,12 @@ language = None ...@@ -76,12 +76,12 @@ language = None
# 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":
include_patterns = ['api/python/nn-tensorflow'] include_patterns = ['api/python/nn-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