diff options
author | William Chang <william@factual.com> | 2019-11-20 22:17:07 -0800 |
---|---|---|
committer | William Chang <william@factual.com> | 2019-11-20 22:17:07 -0800 |
commit | e7f4d56592b3975c38af329e77b4efd9108495e8 (patch) | |
tree | 0a416bccbf70bfdbdb9ffcdb3bf136b47378c014 /lib/lufa/LUFA/StudioIntegration/HV1/lufa_hv1_transform.xslt | |
parent | 71493b2f9bbd5f3d18373c518fa14ccafcbf48fc (diff) | |
parent | 8416a94ad27b3ff058576f09f35f0704a8b39ff3 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'lib/lufa/LUFA/StudioIntegration/HV1/lufa_hv1_transform.xslt')
-rw-r--r-- | lib/lufa/LUFA/StudioIntegration/HV1/lufa_hv1_transform.xslt | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/lib/lufa/LUFA/StudioIntegration/HV1/lufa_hv1_transform.xslt b/lib/lufa/LUFA/StudioIntegration/HV1/lufa_hv1_transform.xslt deleted file mode 100644 index e7b57ab641..0000000000 --- a/lib/lufa/LUFA/StudioIntegration/HV1/lufa_hv1_transform.xslt +++ /dev/null @@ -1,45 +0,0 @@ -<!-- - LUFA Library - Copyright (C) Dean Camera, 2017. - - dean [at] fourwalledcubicle [dot] com - www.lufa-lib.org ---> - -<!-- Docbook XML to Microsoft Help Viewer 1.0 transform file --> - -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> - - <xsl:import href="../Docbook/mshelp/docbook.xsl"/> - - <xsl:output method="xml" indent="no"/> - - <xsl:template match="emphasis[@role = 'keyword' or @role = 'keywordtype' or @role = 'keywordflow']"> - <span class="hl-keyword" style="color: #0079C1"> - <xsl:apply-templates/> - </span> - </xsl:template> - - <xsl:template match="emphasis[@role = 'stringliteral' or @role = 'charliteral']"> - <span class="hl-string" style="color: #800000"> - <xsl:apply-templates/> - </span> - </xsl:template> - - <xsl:template match="emphasis[@role = 'comment']"> - <em class="hl-comment" style="color: #008000"> - <xsl:apply-templates/> - </em> - </xsl:template> - - <xsl:template match="emphasis[@role = 'preprocessor']"> - <span class="hl-preprocessor" style="color: #A000A0"> - <xsl:apply-templates/> - </span> - </xsl:template> - - <xsl:template match="emphasis[@role = 'normal' and ancestor::programlisting]"> - <xsl:apply-templates /> - </xsl:template> - -</xsl:stylesheet> |