如何在DokuWiki中的XML代码块中转义“code”标记

时间:2013-12-27 12:46:30

标签: escaping dokuwiki

在DokuWiki页面中,我想使用<code xml>标记将XML文件的一部分显示为突出显示的语法块。 XML还包含<code></code>标记,因此DokuWiki会将其检测为块的结尾。例如:

<code xml>
  <?xml version="1.0" encoding="UTF-8"?>
  <root>
    <code>Some data</code><!-- The sintax highlighted block breaks here -->
  </root>
</code><!-- This one is actually the closing tag -->

有没有办法逃避</code>代码?

1 个答案:

答案 0 :(得分:1)

请改用文件标签:

<file xml>
  <?xml version="1.0" encoding="UTF-8"?>
  <root>
    <code>Some data</code>
  </root>
</file>