diff options
author | Dirk Baechle <dl9obn@darc.de> | 2013-10-08 13:45:37 (GMT) |
---|---|---|
committer | Dirk Baechle <dl9obn@darc.de> | 2013-10-08 13:45:37 (GMT) |
commit | ef9d8a0031b3ca6faabb0746eeb2a7da519fb805 (patch) | |
tree | f2822fcfebe6b8257b5d1fe2e74af24b5885e82d /doc/man/pdf.xsl | |
parent | 3bebac3d0e8f24065ecda4abb2a2dad7b1d57164 (diff) | |
download | SCons-ef9d8a0031b3ca6faabb0746eeb2a7da519fb805.zip SCons-ef9d8a0031b3ca6faabb0746eeb2a7da519fb805.tar.gz SCons-ef9d8a0031b3ca6faabb0746eeb2a7da519fb805.tar.bz2 |
- added EPUB as output format for documentation ("user" and "man" targets)
Diffstat (limited to 'doc/man/pdf.xsl')
-rw-r--r-- | doc/man/pdf.xsl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/man/pdf.xsl b/doc/man/pdf.xsl index 652975f..f314103 100644 --- a/doc/man/pdf.xsl +++ b/doc/man/pdf.xsl @@ -67,5 +67,8 @@ set toc,title <xsl:apply-templates select="." mode="vl.as.blocks"/>
</xsl:template>
-</xsl:stylesheet>
+<!-- Prevent our EPUB cover image from getting printed to the PDF -->
+<xsl:template match="mediaobject[@role = 'cover']">
+</xsl:template>
+</xsl:stylesheet>
|