This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
md-pdf/md_pdf/assets/templates/toc-template.xsl

71 lines
2.0 KiB
XML
Raw Normal View History

2017-05-17 17:52:57 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2017-05-17 18:04:45 +01:00
<xsl:stylesheet
version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:outline="http://wkhtmltopdf.org/outline"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:output
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
indent="yes" />
2017-05-17 17:52:57 +01:00
<xsl:template match="outline:outline">
<html>
<head>
<style>
h1 {
text-align: center;
font-size: 20px;
font-family: arial;
}
div {border-bottom: 1px dashed rgb(200,200,200);}
span {float: right;}
li {list-style: none;}
ul {
font-size: 20px;
font-family: arial;
}
ul ul {font-size: 80%; }
ul {padding-left: 0em;}
ul ul {padding-left: 1em;}
a {text-decoration:none; color: black;}
</style>
<link rel="stylesheet" href="{{ static_dir }}/style.css" />
</head>
<body>
<h1>Table of Contents</h1>
2017-05-17 18:04:45 +01:00
<ul>
<xsl:apply-templates select="outline:item/outline:item"/>
</ul>
2017-05-17 17:52:57 +01:00
</body>
</html>
</xsl:template>
<xsl:template match="outline:item">
<li>
<xsl:if test="@page!='2'">
<div>
<a>
<xsl:if test="@link">
2017-05-17 18:04:45 +01:00
<xsl:attribute name="href">
<xsl:value-of select="@link"/>
</xsl:attribute>
2017-05-17 17:52:57 +01:00
</xsl:if>
<xsl:if test="@backLink">
2017-05-17 18:04:45 +01:00
<xsl:attribute name="name">
<xsl:value-of select="@backLink"/>
</xsl:attribute>
2017-05-17 17:52:57 +01:00
</xsl:if>
<xsl:value-of select="@title" />
</a>
2017-05-17 18:04:45 +01:00
<span>
<xsl:value-of select="@page" />
</span>
2017-05-17 17:52:57 +01:00
</div>
</xsl:if>
<ul>
<xsl:comment>added to prevent self-closing tags in QtXmlPatterns</xsl:comment>
<xsl:apply-templates select="outline:item"/>
</ul>
</li>
</xsl:template>
</xsl:stylesheet>