如何在 XWiki 2.0 语法中使用 Graphviz 宏?

发布于 2024-08-25 01:30:18 字数 357 浏览 7 评论 0原文

XWiki FAQ 提供了 XWiki 1.0 语法的示例:

{graphviz:type=dot}digraph G {Hello->world}{graphviz}

我的 XWiki 已正确设置以显示此内容。 但我无法将其转换为 XWiki 2.0 语法。我尝试了这个

{{graphviz type=dot}} ... {{/graphviz}}

和其他变体,但我得到的最好的结果是“graphviz”不是一个有效的宏。

一旦我将文档格式切换回旧语法,它就可以工作,所以我认为这不是某种配置错误问题。

正确的语法是什么?

The XWiki FAQ gives an example for XWiki 1.0 syntax:

{graphviz:type=dot}digraph G {Hello->world}{graphviz}

My XWiki is properly set up to display this.
But I'm not able to translate this into XWiki 2.0 syntax. I tried this

{{graphviz type=dot}} ... {{/graphviz}}

and other variations, but the best I got was about "graphviz" not being a valid macro.

As soon as I switch back the document format to the old syntax, it works, so I assume this is not some kind of misconfiguration problem.

What's the correct syntax?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初相遇 2024-09-01 01:30:18

我有同样的问题。

看起来还没有支持。查看他们的 Jira 日志:
http://jira.xwiki.org/jira/browse/XWIKI-3984

I am having the same issue.

Doesn't look like it is yet supported. Check out their Jira log:
http://jira.xwiki.org/jira/browse/XWIKI-3984

温馨耳语 2024-09-01 01:30:18

PlantUML 扩展 基于 Graphviz,它可用于构建

有关更多信息,请参阅PlantUML DOT

使用XWiki 2.0语法,只需插入此片段:

{{plantuml}}  
@startdot  
digraph G {  
  Hello -> world  
}  
@enddot  
{{/plantuml}}

The PlantUML extension is based on Graphviz and it may be used to build dot diagrams

For more information see PlantUML DOT

Using XWiki 2.0 syntax, just insert this snippet:

{{plantuml}}  
@startdot  
digraph G {  
  Hello -> world  
}  
@enddot  
{{/plantuml}}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文