Remove old files now created by template
This commit is contained in:
parent
19df5f4b2a
commit
fc6b04ea87
4 changed files with 3 additions and 87 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -246,6 +246,9 @@ ENV/
|
||||||
|
|
||||||
out/
|
out/
|
||||||
md_pdf/assets/templates/cover.html
|
md_pdf/assets/templates/cover.html
|
||||||
|
md_pdf/assets/templates/header.html
|
||||||
|
md_pdf/assets/templates/footer.html
|
||||||
|
md_pdf/assets/templates/toc.xsl
|
||||||
md_pdf/assets/static/style.css
|
md_pdf/assets/static/style.css
|
||||||
md_pdf/assets/csl/
|
md_pdf/assets/csl/
|
||||||
md_pdf/assets/styles-master/
|
md_pdf/assets/styles-master/
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<link rel="stylesheet" href="../static/style.css" />
|
|
||||||
</head>
|
|
||||||
<body class="footer">
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
Page <span class="page"></span> of <span class="topage"></span>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<script type="text/javascript" src="../static/context.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<link rel="stylesheet" href="../static/style.css" />
|
|
||||||
</head>
|
|
||||||
<body class="header">
|
|
||||||
<script type="text/javascript" src="../static/context.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,62 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<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" />
|
|
||||||
<xsl:template match="outline:outline">
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Table of Contents</title>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
||||||
<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="/home/jake/Projects/md-pdf/md_pdf/assets/static/style.css" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Table of Contents</h1>
|
|
||||||
<ul><xsl:apply-templates select="outline:item/outline:item"/></ul>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
</xsl:template>
|
|
||||||
<xsl:template match="outline:item">
|
|
||||||
<li>
|
|
||||||
<xsl:if test="@page!='2'">
|
|
||||||
<div>
|
|
||||||
<a>
|
|
||||||
<xsl:if test="@link">
|
|
||||||
<xsl:attribute name="href"><xsl:value-of select="@link"/></xsl:attribute>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="@backLink">
|
|
||||||
<xsl:attribute name="name"><xsl:value-of select="@backLink"/></xsl:attribute>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:value-of select="@title" />
|
|
||||||
</a>
|
|
||||||
<span> <xsl:value-of select="@page" /> </span>
|
|
||||||
</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>
|
|
Reference in a new issue