diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-07-07 11:55:23 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-07-07 11:55:23 -0400 |
commit | 8655d4f4948b2deef7844503c8d690f23ac1a062 (patch) | |
tree | b2c6effc9d6cd5b5b43933a1e53b8bf17e9e82cf /lib/lufa/LUFA/StudioIntegration/Docbook/mshelp/docbook.xsl | |
parent | 1896c76a2928c96f9ab7947bec2ef8dd37623cff (diff) | |
parent | 60b30c036397cb5627fa374bb930794b225daa29 (diff) |
Merge commit '60b30c036397cb5627fa374bb930794b225daa29' as 'lib/lufa'
Diffstat (limited to 'lib/lufa/LUFA/StudioIntegration/Docbook/mshelp/docbook.xsl')
-rw-r--r-- | lib/lufa/LUFA/StudioIntegration/Docbook/mshelp/docbook.xsl | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/lib/lufa/LUFA/StudioIntegration/Docbook/mshelp/docbook.xsl b/lib/lufa/LUFA/StudioIntegration/Docbook/mshelp/docbook.xsl new file mode 100644 index 0000000000..03b81feafc --- /dev/null +++ b/lib/lufa/LUFA/StudioIntegration/Docbook/mshelp/docbook.xsl @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsl:stylesheet + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:d="http://docbook.org/ns/docbook" + xmlns="http://www.w3.org/1999/xhtml" + exclude-result-prefixes="xsl d" + version="1.0"> + + <xsl:import href="../xhtml/chunk.xsl"/> + <xsl:import href="../xhtml/highlight.xsl"/> + + <!-- + Based on the normal xhtml templates, all overrides applicable to + xhtml is applicable to HV1. + --> + + <xsl:import href="hv1-common.xsl"/> + + <!-- + Choose if links should be generated using ms-xhelp (default) or + the more verbose ms.help type. The latter requires product.name, + product.version and product.locale to be set + --> + <xsl:param name="use.mshelp.links" select="0"/> + + <!-- + Name of target product. If specified then each page is + marked with this product. This is usualy set during + install time. + --> + <xsl:param name="product.name" select="''" /> + + <!-- + Name of target version. If specified then each page is + marked with this version. This is usualy set during + install time. + --> + <xsl:param name="product.version" select="''" /> + + <!-- + Locale for the help. Should always be set + --> + <xsl:param name="product.locale" select="'en-US'" /> + + <!-- + Self branding. Gives access for chunks to load + it's own branding package during runtime + --> + <xsl:param name="topic.selfbrand" select="1"/> + + + <!-- Use doctitle for olinks --> + <xsl:param name="olink.doctitle" select="'yes'" /> + + <!-- Enable source code highlighting--> + <xsl:param name="highlight.source" select="1"/> + +</xsl:stylesheet> |