source: stylesheets/lfs-xsl/docbook-xsl-1.78.1/params/highlight.source.xml@ 58675ce

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 7.5 7.6 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 58675ce was 15c7d39, checked in by Matthew Burgess <matthew@…>, 11 years ago

Update stylesheets to docbook-xsl-1.78.1.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10355 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 3.4 KB
Line 
1<refentry xmlns="http://docbook.org/ns/docbook"
2 xmlns:xlink="http://www.w3.org/1999/xlink"
3 xmlns:xi="http://www.w3.org/2001/XInclude"
4 xmlns:src="http://nwalsh.com/xmlns/litprog/fragment"
5 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
6 version="5.0" xml:id="highlight.source">
7<refmeta>
8<refentrytitle>highlight.source</refentrytitle>
9<refmiscinfo class="other" otherclass="datatype">boolean</refmiscinfo>
10</refmeta>
11<refnamediv>
12<refname>highlight.source</refname>
13<refpurpose>Should the content of <tag>programlisting</tag>
14be syntactically highlighted?</refpurpose>
15</refnamediv>
16
17<refsynopsisdiv>
18<src:fragment xml:id="highlight.source.frag">
19<xsl:param name="highlight.source" select="0"/>
20</src:fragment>
21</refsynopsisdiv>
22
23<refsection><info><title>Description</title></info>
24
25<para>When this parameter is non-zero, the stylesheets will try to do syntax highlighting of the
26content of <tag>programlisting</tag> elements. You specify the language for each programlisting
27by using the <tag class="attribute">language</tag> attribute. The <parameter>highlight.default.language</parameter>
28parameter can be used to specify the language for programlistings without a <tag class="attribute">language</tag>
29attribute. Syntax highlighting also works for <tag>screen</tag> and <tag>synopsis</tag> elements.</para>
30
31<para>The actual highlighting work is done by the XSLTHL extension module. This is an external Java library that has to be
32downloaded separately (see below).</para>
33
34<itemizedlist>
35<para>In order to use this extension, you must</para>
36
37<listitem><para>add <filename>xslthl-2.x.x.jar</filename> to your Java classpath. The latest version is available
38from <link xlink:href="http://sourceforge.net/projects/xslthl">the XSLT syntax highlighting project</link>
39at SourceForge.</para>
40</listitem>
41<listitem>
42<para>use a customization layer in which you import one of the following stylesheet modules:
43<itemizedlist>
44 <listitem>
45 <para><filename>html/highlight.xsl</filename>
46 </para>
47 </listitem>
48<listitem>
49 <para><filename>xhtml/highlight.xsl</filename>
50 </para>
51 </listitem>
52<listitem>
53 <para><filename>xhtml-1_1/highlight.xsl</filename>
54 </para>
55 </listitem>
56<listitem>
57 <para><filename>fo/highlight.xsl</filename>
58 </para>
59</listitem>
60</itemizedlist>
61</para>
62</listitem>
63<listitem><para>let either the <literal>xslthl.config</literal> Java system property or the
64<parameter>highlight.xslthl.config</parameter> parameter point to the configuration file for syntax
65highlighting (using URL syntax). DocBook XSL comes with a ready-to-use configuration file,
66<filename>highlighting/xslthl-config.xml</filename>.</para>
67</listitem>
68</itemizedlist>
69
70<para>The extension works with Saxon 6.5.x and Xalan-J. (Saxon 8.5 or later is also supported, but since it is
71an XSLT 2.0 processor it is not guaranteed to work with DocBook XSL in all circumstances.)</para>
72
73<para>The following is an example of a Saxon 6 command adapted for syntax highlighting, to be used on Windows:</para>
74
75<informalexample>
76<para><command>java -cp c:/Java/saxon.jar;c:/Java/xslthl-2.0.1.jar
77-Dxslthl.config=file:///c:/docbook-xsl/highlighting/xslthl-config.xml com.icl.saxon.StyleSheet
78-o test.html test.xml myhtml.xsl</command></para>
79</informalexample>
80
81</refsection>
82</refentry>
Note: See TracBrowser for help on using the repository browser.