Skip to content

Commit

Permalink
Update add/data/xslt/tei/profiles/edirom-body/teiBody2HTML.xsl
Browse files Browse the repository at this point in the history
Co-authored-by: Peter Stadler <[email protected]>
  • Loading branch information
bwbohl and peterstadler authored Sep 11, 2024
1 parent 0d8829e commit ce2e688
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion add/data/xslt/tei/profiles/edirom-body/teiBody2HTML.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,14 @@
</xsl:choose>
-->

<!-- the graphics prefix will be prepended and should identify relative @urls -->
<!--
The variable `$graphicsPrefix` is to distinguish images (referenced from a TEI file) that are
a) to be fetched from a remote location (via http or https) or
b) from the current EOL instance
In the case of a) `$graphicsPrefix` will be the empty-sequence
In the case of b) `$graphicsPrefix` will hold a string with the computed URL of the image
-->
<xsl:variable name="graphicsPrefix" as="xs:string?">
<xsl:choose>
<xsl:when test="starts-with(@url, 'http')">
Expand Down

0 comments on commit ce2e688

Please sign in to comment.