forked from mfulz_github/qmk_firmware
Add partially complete syntax highlighting to the HV1 transform.
This commit is contained in:
parent
29bfe7a09c
commit
1840e1bbae
|
@ -0,0 +1,49 @@
|
|||
<!--
|
||||
LUFA Library
|
||||
Copyright (C) Dean Camera, 2013.
|
||||
|
||||
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; display:inline-block">
|
||||
<xsl:apply-templates/>
|
||||
</span>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="emphasis[@role = 'stringliteral' or @role = 'charliteral']">
|
||||
<span class="hl-string" style="color: #800000; display:inline-block">
|
||||
<xsl:apply-templates/>
|
||||
</span>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="emphasis[@role = 'comment']">
|
||||
<span class="hl-comment" style="color: #008000; display:inline-block">
|
||||
<xsl:apply-templates/>
|
||||
</span>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="emphasis[@role = 'preprocessor']">
|
||||
<span class="hl-preprocessor" style="color: #A000A0; display:inline-block">
|
||||
<xsl:apply-templates/>
|
||||
</span>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="emphasis[@role = 'normal' and ancestor::programlisting]">
|
||||
<span>
|
||||
<xsl:apply-templates/>
|
||||
</span>
|
||||
</xsl:template>
|
||||
-->
|
||||
|
||||
</xsl:stylesheet>
|
|
@ -85,10 +85,10 @@ $(EXTENSION_OUTPUT_XML): $(TEMP_MANIFEST_XML)
|
|||
$(MSHELP_OUTPUT_XML): $(DOXYGEN_COMBINED_XML)
|
||||
@echo Converting Doxygen XML to Docbook...
|
||||
@-mkdir mshelp 2> /dev/null
|
||||
@xsltproc HV1/lufa_docbook_transform.xsl $(DOXYGEN_COMBINED_XML) > mshelp/lufa_docbook.xml
|
||||
@xsltproc HV1/lufa_docbook_transform.xslt $(DOXYGEN_COMBINED_XML) > mshelp/lufa_docbook.xml
|
||||
|
||||
@echo Converting Docbook to Microsoft Help 1.0...
|
||||
@cd mshelp && xsltproc $(MSHELP_GEN_PARAMS) ../Docbook/mshelp/docbook.xsl lufa_docbook.xml
|
||||
@echo Converting Docbook XML to Microsoft Help 1.0...
|
||||
@cd mshelp && xsltproc $(MSHELP_GEN_PARAMS) ../HV1/lufa_hv1_transform.xslt lufa_docbook.xml
|
||||
|
||||
@echo Copying help assets...
|
||||
@cp HV1/lufa_studio_help_styling.css mshelp
|
||||
|
|
Loading…
Reference in New Issue