generator and template updates

main
Stephen Kerr 1 year ago
parent 301eb72182
commit 5586e3e46f

File diff suppressed because it is too large Load Diff

@ -8,9 +8,27 @@
<link rel="stylesheet" type="text/css" href="print_style.css">
</head>
<body>
<div id="contenteo">
<section class="section" id="start-matter"></section>
{{ content[0] }}
</section>
<section class="toc">
<h2>Contents</h2>
<ul>
{% for title in titles %}
<li class="toc-title"><a href="#{{ title }}">{{ title }}</a></li>
{% endfor %}
</ul>
</section>
<div id="contenteo"></div>
{% for section in content %}
<section class="section">{{ section }}</section>
{% if loop.index > 1 %}
<section class="section" id="{{ titles[loop.index] }}">
<h1>{{ titles[loop.index] }}</h1>
</section>
<section class="section" id="{{ titles[loop.index] }}">
{{ section }}
</section>
{% endif %}
{% endfor %}
</div>
</body>

@ -99,7 +99,7 @@ h1,h2,h3,h4,h5,h6{
h1{
font-size: 1.8rem;
break-before: left;
break-after: right;
/* break-after: right; */
background-color: var(--spot-color-1);
color: #fff;
height: 186mm;
@ -116,4 +116,13 @@ section{
::selection{
background-color: var(--spot-color-1);
color: #ccc;
}
.toc-title{
break-before: none;
break-after: none;
}
.toc-title a::after{
content: target-counter(attr(href url), page);
float: right;
}

@ -2,6 +2,7 @@ from glob import glob
import os
import subprocess
import jinja2
import json
# https://devdocs.io/python~3.9/library/glob#glob.glob
# files = glob("content/**", recursive=True)
@ -16,6 +17,7 @@ all_html = []
folders = open('./00-booklet/section-order.txt').read().splitlines()
stoplist = ["00-booklet", "spin-wheel"]
# print(folders)
titles = []
for folder in folders:
if folder in stoplist:
@ -32,8 +34,17 @@ for folder in folders:
print("===========")
file = file.replace(" ", "\ ")
print(file)
md_data = open(file).read()
#all_md += "\n"+md_data
md_data = open(file, encoding='utf-8').read()
#grab metadatas
metapandoc = f"pandoc {file} --template=./00-booklet/pandoc-metadata.template"
file_metadata = subprocess.check_output(metapandoc, shell=True, text=True,encoding="utf-8")
print("You did it! You fount the metadata, good job. Its:", file_metadata)
try:
file_dictionary = json.loads(file_metadata)
titles.append(file_dictionary["title"])
except KeyError as err:
print(err)
# use pandoc to turn file into html
pandoc_command = "pandoc -f markdown -t html " + file
@ -41,7 +52,7 @@ for folder in folders:
print("html has been generated!")
all_html.append(html_data)
elif file.endswith((".jpg",".png")):
elif file.endswith((".jpg",".png",".jpeg",".jfif",".bmp")):
print("image found yay",file)
output_file=file.replace(folder,"./00-booklet")
copy_command=f"cp {file} {output_file}"
@ -50,12 +61,12 @@ for folder in folders:
#html to template environment
print("Los titlos: ", titles)
env = jinja2.Environment(loader=jinja2.FileSystemLoader("00-booklet"))
template = env.get_template("booklet.template.html")
booklet_html = template.render(content=all_html)
booklet_html = template.render(content=all_html,titles=titles)
#print("this is the html: ", booklet_html)
output = open("00-booklet/booklet.html", "w")
output = open("00-booklet/booklet.html", "w",encoding="utf-8")
output.write(booklet_html)
output.close()
print("booklet html files saved!")

Loading…
Cancel
Save