Skip to content

Commit

Permalink
修改: doc/_head.py
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxinwei committed May 31, 2024
1 parent 8c709f8 commit 1163b5b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions doc/_head.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@
# # # "text/plain",
# # # ), 0)
# # ]
# application/vnd.plotly.v1+json and application/vnd.bokehjs_load.v0+json
suppress_warnings = ["mystnb.unknown_mime_type"]

# extlinks = {
# # 'duref': ('https://docutils.sourceforge.io/docs/ref/rst/'
Expand Down Expand Up @@ -175,7 +173,11 @@
]
nb_execution_excludepatterns = ["**/my_notebook.ipynb"]

suppress_warnings = ["myst.xref_missing"]
suppress_warnings = [
"mystnb.unknown_mime_type", # 禁用 application/vnd.plotly.v1+json and application/vnd.bokehjs_load.v0+json 警告
"myst.xref_missing", # 禁用 myst 警告
"autoapi.python_import_resolution", "autoapi.not_readable" # 禁用 autoapi 警告
]
# jupyterlite_dir = ROOT/"tools/lite/apps"
jupyterlite_contents = "../tests"
jupyterlite_bind_ipynb_suffix = False
Expand Down

0 comments on commit 1163b5b

Please sign in to comment.