We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94bae15 commit d214c04Copy full SHA for d214c04
_doc/conf.py
@@ -12,6 +12,7 @@
12
"sphinx.ext.githubpages",
13
"sphinx.ext.ifconfig",
14
"sphinx.ext.intersphinx",
15
+ "sphinx.ext.linkcode",
16
"sphinx.ext.mathjax",
17
"sphinx.ext.viewcode",
18
"sphinx.ext.todo",
@@ -63,15 +64,20 @@
63
64
# ]
65
66
# The following is used by sphinx.ext.linkcode to provide links to github
-linkcode_resolve = make_linkcode_resolve(
67
- "onnx-diagnostic",
+_linkcode_resolve = make_linkcode_resolve(
68
+ "onnx_diagnostic",
69
(
70
"https://github.com/sdpython/onnx-diagnostic/"
71
"blob/{revision}/{package}/"
72
"{path}#L{lineno}"
73
),
74
)
75
76
+
77
+def linkcode_resolve(domain, info):
78
+ return _linkcode_resolve(domain, info)
79
80
81
latex_elements = {
82
"papersize": "a4",
83
"pointsize": "10pt",
0 commit comments