diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2007-09-09 08:55:14 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2007-09-09 08:55:14 +0000 |
commit | c1fe047a4d7b6890809ba4ce2e25f290c5d11962 (patch) | |
tree | df8ae9fb1adbe06584916a01634ed4148f07c913 /stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/highlight.xsl | |
parent | e7477591dd2a1302aadec48724cb070850caebee (diff) |
Merged r8368 from new-xsl branch.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8369 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/highlight.xsl')
-rw-r--r-- | stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/highlight.xsl | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/highlight.xsl b/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/highlight.xsl index 0fe3ac08e..27634a0eb 100644 --- a/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/highlight.xsl +++ b/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/highlight.xsl @@ -18,36 +18,35 @@ </xsl:template> <xsl:template match="xslthl:string"> - <b class="hl-string"><i><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></i></b> + <b class="hl-string"><i style="color:red"><xsl:apply-templates/></i></b> </xsl:template> <xsl:template match="xslthl:comment"> - <i class="hl-comment"><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></i> + <i class="hl-comment" style="color: silver"><xsl:apply-templates/></i> </xsl:template> <xsl:template match="xslthl:tag"> - <b class="hl-tag"><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></b> + <b class="hl-tag" style="color: blue"><xsl:apply-templates/></b> </xsl:template> <xsl:template match="xslthl:attribute"> - <span class="hl-attribute"><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></span> + <span class="hl-attribute" style="color: blue"><xsl:apply-templates/></span> </xsl:template> <xsl:template match="xslthl:value"> - <span class="hl-value"><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></span> + <span class="hl-value" style="color: blue"><xsl:apply-templates/></span> </xsl:template> <xsl:template match="xslthl:html"> - <b><i><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></i></b> + <b><i style="color: red"><xsl:apply-templates/></i></b> </xsl:template> <xsl:template match="xslthl:xslt"> - <b><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></b> + <b style="color: blue"><xsl:apply-templates/></b> </xsl:template> <xsl:template match="xslthl:section"> <b><xsl:apply-templates/></b> </xsl:template> - </xsl:stylesheet> |