Skip to content

Commit

Permalink
Fix #410
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarijo committed Jul 19, 2020
1 parent 38d6a69 commit a073d8b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Binary file modified src/main/resources/lode.zip
Binary file not shown.
6 changes: 6 additions & 0 deletions src/main/resources/lode/extraction.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -497,9 +497,15 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
<xsl:variable name="label" select="f:getLabel(.)" as="xs:string" />
<xsl:choose>
<xsl:when test="$anchor = ''">
<!-- Change to make the external links open in a new window
instead of being dotted
<span class="dotted" title="{.}">
<xsl:value-of select="$label" />
</span>
-->
<a href="{.}" title="{.}" target="_blank">
<xsl:value-of select="$label" />
</a>
</xsl:when>
<xsl:otherwise>
<a href="#{$anchor}" title="{.}">
Expand Down

0 comments on commit a073d8b

Please sign in to comment.