source: stylesheets/lfs-xsl/docbook-xsl-snapshot/fo/highlight.xsl@ 2262b78

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 2262b78 was 2262b78, checked in by Randy McMurchy <randy@…>, 16 years ago

Changed any DOS line-endings to UNIX style

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@7430 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 1.8 KB
Line 
1<?xml version='1.0'?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:fo="http://www.w3.org/1999/XSL/Format"
4 xmlns:xslthl="http://xslthl.sf.net"
5 exclude-result-prefixes="xslthl"
6 version='1.0'>
7
8<!-- ********************************************************************
9 $Id$
10 ********************************************************************
11
12 This file is part of the XSL DocBook Stylesheet distribution.
13 See ../README or http://docbook.sf.net/release/xsl/current/ for
14 and other information.
15
16 ******************************************************************** -->
17
18<xsl:template match='xslthl:keyword'>
19 <fo:inline font-weight="bold"><xsl:apply-templates/></fo:inline>
20</xsl:template>
21
22<xsl:template match='xslthl:string'>
23 <fo:inline font-weight="bold" font-style="italic"><xsl:apply-templates/></fo:inline>
24</xsl:template>
25
26<xsl:template match='xslthl:comment'>
27 <fo:inline font-style="italic"><xsl:apply-templates/></fo:inline>
28</xsl:template>
29
30<xsl:template match='xslthl:tag'>
31 <fo:inline font-weight="bold"><xsl:apply-templates/></fo:inline>
32</xsl:template>
33
34<xsl:template match='xslthl:attribute'>
35 <fo:inline font-weight="bold"><xsl:apply-templates/></fo:inline>
36</xsl:template>
37
38<xsl:template match='xslthl:value'>
39 <fo:inline font-weight="bold"><xsl:apply-templates/></fo:inline>
40</xsl:template>
41
42<!--
43<xsl:template match='xslthl:html'>
44 <span style='background:#AFF'><font color='blue'><xsl:apply-templates/></font></span>
45</xsl:template>
46
47<xsl:template match='xslthl:xslt'>
48 <span style='background:#AAA'><font color='blue'><xsl:apply-templates/></font></span>
49</xsl:template>
50
51<xsl:template match='xslthl:section'>
52 <span style='background:yellow'><xsl:apply-templates/></span>
53</xsl:template>
54-->
55
56</xsl:stylesheet>
57
Note: See TracBrowser for help on using the repository browser.