使用 Schematron 在内联元素前添加 space

Add space before inline element with Schematron

我想在 Schematron 的某些特定 XML 内联元素之前添加 spaces,例如<ph>,但前提是没有 space。我看不到我的规则的问题。你能帮忙吗?

<sch:pattern id="add-space-before-ph">
    <sch:rule context="ph">
        <sch:assert test="preceding::text()[not(ends-with(., ' '))]" 
                    role="warning" 
                    sqf:fix="add-space-before-ph">Add space before &lt;ph&gt;</sch:assert>
        <sqf:fix id="add-space-before-ph">
            <sqf:description>
                <sqf:title>Add space before &lt;ph&gt;</sqf:title>
            </sqf:description>
            <sqf:add position="before" match="." select="' '"/>
        </sqf:fix>
    </sch:rule>
</sch:pattern>

你的断言有两个问题:第一个问题是当断言不满足时显示消息,所以你需要否定它的条件,第二个问题是你实际上是在匹配一个具有特定条件的文本节点而不是检查文本节点是否满足特定条件,所以我认为断言应该如下所示:

<sch:assert test="ends-with(preceding::text()[1], ' ')" 
                  role="warning" 
                  sqf:fix="add-space-before-ph">Add space before &lt;ph&gt;  </sch:assert> 

而且你还应该考虑到这样一个事实,即 ph 之前可以有多个空格 + 换行符(XML 可能打印得很好)