Open ebeshero opened 2 years ago
A. Where a <l>...</l> element contains a `descendant::rs[@type='enjambment']
<l>...</l>
make a template that matches on l[.//rs[@type='enjambment'] and add the @enjamb='y' to the l element: <l enjamb="yes">
l[.//rs[@type='enjambment']
@enjamb='y'
l
<l enjamb="yes">
make a template that matches on rs[@type='enjambment'] and just use <xsl:apply-templates/> inside to lose that markup.
rs[@type='enjambment']
<xsl:apply-templates/>
B. Let's get remove the <rs type="endstop"> markup because the default will be that these lines LACK enjambment and therefore do not require markup.
<rs type="endstop">
A. Where a
<l>...</l>
element contains a `descendant::rs[@type='enjambment']make a template that matches on
l[.//rs[@type='enjambment']
and add the@enjamb='y'
to thel
element:<l enjamb="yes">
make a template that matches on
rs[@type='enjambment']
and just use<xsl:apply-templates/>
inside to lose that markup.B. Let's get remove the
<rs type="endstop">
markup because the default will be that these lines LACK enjambment and therefore do not require markup.