[go: up one dir, main page]

File: mal-epub.xsl

package info (click to toggle)
yelp-tools 3.31.90-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,532 kB
  • sloc: sh: 2,277; makefile: 32
file content (20 lines) | stat: -rw-r--r-- 595 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<xsl:stylesheet
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:mal="http://projectmallard.org/1.0/"
    exclude-result-prefixes="mal"
    version="1.0">

<xsl:param name="mal.if.env" select="'epub html xhtml'"/>

<xsl:template mode="html.header.mode" match="mal:page"/>
<xsl:template mode="html.footer.mode" match="mal:page"/>

<xsl:template mode="html.css.mode" match="mal:page">
<xsl:text>
body { background-color: </xsl:text><xsl:value-of select="$color.background"/><xsl:text>; }
div.body { border: none; }
</xsl:text>
<xsl:apply-imports/>
</xsl:template>

</xsl:stylesheet>