Skip to content

Commit

Permalink
fix rnc serialisation: enclose values in '...'
Browse files Browse the repository at this point in the history
  • Loading branch information
EsGeh authored and EsGeh committed Aug 5, 2019
1 parent 181a7a8 commit 495ac1c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stylesheets/rng_to_odd/common/rng_to_rnc.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@
<template mode="rng_to_rnc" match="rng:value">
<param name="indent" select="''"/>
<value-of select="$indent"/>
<value-of select="text()"/>
<text>'</text>
<value-of select="."/>
<text>'</text>
</template>

<template mode="rng_to_rnc" match="rng:text">
Expand Down

0 comments on commit 495ac1c

Please sign in to comment.