在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>
代码?
答案 0 :(得分:1)
请改用文件标签:
<file xml>
<?xml version="1.0" encoding="UTF-8"?>
<root>
<code>Some data</code>
</root>
</file>