在DokuWiki页面中,我想使用<file xml example.xml>
语法将XML文件的内容显示为可下载的突出显示语法块。 XML还包含<file>...</file>
标记,因此DokuWiki会将其检测为块的结尾。例如:
<file xml example.xml>
<?xml version="1.0" encoding="UTF-8"?>
<root>
<file>...</file><!-- The syntax highlighted block breaks here -->
</root>
</file><!-- This one is actually the closing tag -->
有没有办法逃避XML中的</file>
结束标记?
答案 0 :(得分:0)
你无法摆脱它。但您可以使用<code></code>
语法来避免冲突。