Test inline-expand-text 003
Test that
p:inline-expand-text turns on expansion
inside
p:inline.
Test is expected to pass.
The pipeline
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc"
xmlns:t="http://xproc.org/ns/testsuite/3.0" version="3.0" expand-text="false">
<p:output port="result"/>
<p:identity>
<p:with-input>
<p:inline>
<doc>{1 + 2}=
<answer p:inline-expand-text="true">{ 1 + 2 }</answer>
</doc>
</p:inline>
</p:with-input>
</p:identity>
</p:declare-step>
Result
<doc xmlns:t="http://xproc.org/ns/testsuite/3.0">{1 + 2}=
<answer xmlns:p="http://www.w3.org/ns/xproc">3</answer>
</doc>
Schematron checks
<s:schema xmlns="http://www.w3.org/1999/xhtml"
xmlns:s="http://purl.oclc.org/dsdl/schematron" xmlns:t="http://xproc.org/ns/testsuite/3.0"
queryBinding="xslt2">
<s:ns prefix="p" uri="http://www.w3.org/ns/xproc"/>
<s:pattern>
<s:rule context="/*">
<s:assert test="self::doc">The pipeline root is not doc.</s:assert>
<s:assert test="matches(., '1 . 2.=')">Curly brace text is missing.</s:assert>
<s:assert test="answer='3'">The answer is not 3.</s:assert>
</s:rule>
<s:rule context="answer">
<s:assert test="not(@p:inline-expand-text)">The expand text attribute has not been removed.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 10 Jun 2021, Achim Berndzen
- Added attribute 'queryBinding' to schematron's schema.
- 24 Oct 2018, Norman Walsh
- Initial checkin.