Skip to content

Commit

Permalink
New: Templates for newly-added elements
Browse files Browse the repository at this point in the history
Display text of fw elements and ignore geo elements. See #22
  • Loading branch information
andrew-morrison committed Feb 13, 2019
1 parent fd709bb commit a3bcaa1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions msdesc2html.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -2131,6 +2131,12 @@
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="fw">
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="geo"><!-- Do not display geographical coordinates --></xsl:template>

<xsl:template match="@xml:*"></xsl:template>

<!-- catch all fallback: this is there to warn me of elements I don't have templates for and should never fire otherwise-->
Expand Down

0 comments on commit a3bcaa1

Please sign in to comment.