Skip to content

Commit 12d1451

Browse files
Preserve Links and Text related to Public Dataset (#53)
1 parent b1a293c commit 12d1451

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/pubget/_data/stylesheets/text_extraction.xsl

+13-1
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,23 @@
2424
</abstract>
2525
<body>
2626
<xsl:apply-templates select="/article/body" />
27+
<xsl:apply-templates select="/article/back//*[self::notes[@notes-type='data-availability'] or self::sec[@sec-type='data-availability']]"/>
2728
</body>
2829
</extracted-text>
2930
</xsl:template>
3031

32+
<xsl:template match="/article/back//*[self::notes or self::sec][(self::notes and @notes-type='data-availability') or (self::sec and @sec-type='data-availability')]">
33+
<xsl:variable name="title" select=".//title"/>
34+
<xsl:if test="$title">
35+
<xsl:value-of select="concat('## ', normalize-space($title))"/>
36+
<xsl:text>&#10;&#10;</xsl:text>
37+
</xsl:if>
38+
<xsl:for-each select=".//p | .//ext-link[@ext-link-type='uri']">
39+
<xsl:value-of select="normalize-space(.)"/>
40+
<xsl:text> </xsl:text>
41+
</xsl:for-each>
42+
</xsl:template>
43+
3144
<xsl:template match="*" >
3245
<xsl:text> </xsl:text>
3346
<xsl:apply-templates />
@@ -151,7 +164,6 @@
151164
<xsl:template match="equation-count" />
152165
<xsl:template match="era" />
153166
<xsl:template match="etal" />
154-
<xsl:template match="ext-link" />
155167
<xsl:template match="fax" />
156168
<xsl:template match="fig-count" />
157169
<xsl:template match="fn" />

0 commit comments

Comments
 (0)