在 Sphinx 中使用 graphviz 的图形内部参考?
Internal reference within a graph using graphviz in Sphinx?
我正在尝试在我的 Sphinx 文档中使用 graphviz 创建一个图形。
我设法在图表中包含一个 href
到 link 一个外部网页(这里是很好的例子 https://jhermann.github.io/blog/python/documentation/2020/03/25/sphinx_ext_graphviz.html)。
我现在想做同样的事情,但引用我的文档的另一页(使用类似 :ref:`another page of my documentation`
而不是 href
的内容)。预期结果是:您单击图表的一个节点,它会打开相应的文档页面/部分。
这可能吗?有什么解决方法吗?
我假设您在 href
属性中输入的任何值在 HTML 中有效,在 graphviz 中也有效。尝试为其值添加相对路径,例如:
.. graphviz::
:name: name
digraph "my-digraph" {
my [label="my-label",
shape="component",
href="relative/path/to/file.html"
target="_blank"];
}
我正在尝试在我的 Sphinx 文档中使用 graphviz 创建一个图形。
我设法在图表中包含一个 href
到 link 一个外部网页(这里是很好的例子 https://jhermann.github.io/blog/python/documentation/2020/03/25/sphinx_ext_graphviz.html)。
我现在想做同样的事情,但引用我的文档的另一页(使用类似 :ref:`another page of my documentation`
而不是 href
的内容)。预期结果是:您单击图表的一个节点,它会打开相应的文档页面/部分。
这可能吗?有什么解决方法吗?
我假设您在 href
属性中输入的任何值在 HTML 中有效,在 graphviz 中也有效。尝试为其值添加相对路径,例如:
.. graphviz::
:name: name
digraph "my-digraph" {
my [label="my-label",
shape="component",
href="relative/path/to/file.html"
target="_blank"];
}