source: projects/Vine-manual/trunk/custom.xsl @ 125

Revision 125, 962 bytes checked in by yasumichi, 15 years ago (diff)

configure 3 part

Line 
1<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
2
3        <xsl:import href="/usr/share/sgml/docbook/xsl-stylesheets/xhtml/chunk.xsl"/>
4        <xsl:param name="html.stylesheet">vine.css</xsl:param>
5       
6        <xsl:param name="toc.section.depth">1</xsl:param>
7        <xsl:param name="section.autolabel">1</xsl:param>
8        <xsl:param name="section.label.includes.component.label">1</xsl:param>
9        <xsl:param name="use.id.as.filename">1</xsl:param>
10        <xsl:param name="admon.graphics">1</xsl:param>
11        <xsl:param name="callout.graphics">1</xsl:param>
12        <xsl:param name="callout.unicode">0</xsl:param>
13        <xsl:param name="root.filename" />
14         
15        <xsl:template match="question" mode="label.markup">
16                <xsl:text>Q</xsl:text>
17                <xsl:number level="multiple" count="qandaentry" format="1"/>
18        </xsl:template>
19        <xsl:template match="answer" mode="label.markup">
20                <xsl:text>A</xsl:text>
21                <xsl:number level="multiple" count="qandaentry" format="1"/>
22        </xsl:template>
23</xsl:stylesheet>
24
Note: See TracBrowser for help on using the repository browser.