我想对未缩进的 XML 执行以下操作:
xdmp:quote(fn:doc($uri)/*)
https://docs.marklogic.com/xdmp:quote 的文档不是很清楚。应如何格式化选项参数?
最佳答案
尝试使用以下选项参数:
let $options :=
<options xmlns="xdmp:quote">
<indent>no</indent>
</options>
return xdmp:quote(fn:doc($uri)/*, $options)
quote options 列在
xdmp:quote()
函数的文档中。有关所有选项的完整列表,您可以在/MarkLogic/Config 目录的安装区域中找到 quote.xsd 文件。
关于xml - MarkLogic 的 xdmp :quote does not have an example for the options 的文档,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42581669/