Skip to content

Commit

Permalink
adding back the spacing and manuscript updates
Browse files Browse the repository at this point in the history
  • Loading branch information
emgeier authored Nov 8, 2024
1 parent 4694195 commit 889a8bd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions json-stylesheet.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@
<xsl:if test="$doc/descendant::tei:body/descendant::tei:bibl/tei:bibl[@type='lawd:Edition']">
<array key="{.}" xmlns="http://www.w3.org/2005/xpath-functions">
<xsl:for-each select="$doc/descendant::tei:body/descendant::tei:bibl/tei:bibl[@type='lawd:Edition']">
<string xmlns="http://www.w3.org/2005/xpath-functions"><xsl:value-of select="normalize-space(string-join(.,' '))"/></string>
<string xmlns="http://www.w3.org/2005/xpath-functions"><xsl:value-of select="normalize-space(string-join(descendant-or-self::text(),' '))"/></string>
</xsl:for-each>
</array>
</xsl:if>
Expand All @@ -702,7 +702,7 @@
<xsl:if test="$doc/descendant::tei:body/descendant::tei:bibl/tei:bibl[@type='syriaca:ModernTranslation']">
<array key="{.}" xmlns="http://www.w3.org/2005/xpath-functions">
<xsl:for-each select="$doc/descendant::tei:body/descendant::tei:bibl/tei:bibl[@type='syriaca:ModernTranslation']">
<string xmlns="http://www.w3.org/2005/xpath-functions"><xsl:value-of select="normalize-space(string-join(.,' '))"/></string>
<string xmlns="http://www.w3.org/2005/xpath-functions"><xsl:value-of select="normalize-space(string-join(descendant-or-self::text(),' '))"/></string>
</xsl:for-each>
</array>
</xsl:if>
Expand All @@ -715,7 +715,7 @@
<xsl:if test="$doc/descendant::tei:body/descendant::tei:bibl/tei:bibl[@type='syriaca:AncientVersion']">
<array key="{.}" xmlns="http://www.w3.org/2005/xpath-functions">
<xsl:for-each select="$doc/descendant::tei:body/descendant::tei:bibl/tei:bibl[@type='syriaca:AncientVersion']">
<string xmlns="http://www.w3.org/2005/xpath-functions"><xsl:value-of select="normalize-space(string-join(.,' '))"/></string>
<string xmlns="http://www.w3.org/2005/xpath-functions"><xsl:value-of select="normalize-space(string-join(descendant-or-self::text(),' '))"/></string>
</xsl:for-each>
</array>
</xsl:if>
Expand All @@ -728,8 +728,8 @@
<xsl:if test="$doc/descendant::tei:body/descendant::tei:bibl/tei:bibl[@type='syriaca:Manuscript']">
<array key="{.}" xmlns="http://www.w3.org/2005/xpath-functions">
<xsl:for-each select="$doc/descendant::tei:body/descendant::tei:bibl/tei:bibl[@type='syriaca:Manuscript']">
<string xmlns="http://www.w3.org/2005/xpath-functions"><xsl:value-of select="normalize-space(string-join(.,' '))"/></string>
</xsl:for-each>

<string xmlns="http://www.w3.org/2005/xpath-functions"><xsl:value-of select="normalize-space(string-join(descendant-or-self::text(),' '))"/></string> </xsl:for-each>
</array>
</xsl:if>
</xsl:if>
Expand All @@ -741,7 +741,7 @@
<xsl:if test="$doc/descendant::tei:body/descendant::tei:bibl/tei:bibl">
<array key="{.}" xmlns="http://www.w3.org/2005/xpath-functions">
<xsl:for-each select="$doc/descendant::tei:body/descendant::tei:bibl/tei:bibl">
<string xmlns="http://www.w3.org/2005/xpath-functions"><xsl:value-of select="normalize-space(string-join(.,' '))"/></string>
<string xmlns="http://www.w3.org/2005/xpath-functions"><xsl:value-of select="normalize-space(string-join(descendant-or-self::text(),' '))"/></string>
</xsl:for-each>
</array>
</xsl:if>
Expand Down

0 comments on commit 889a8bd

Please sign in to comment.