b']{geometry}\n')
spec.texout.write(b'\\begin{document}\n')
html = parse(spec.htmlfilter(spec.fetcher.fetch(spec.url)))
+ first = True
for r in chunkDOMs(html):
+ if first:
+ first = False
+ else:
+ # h/t https://tex.stackexchange.com/questions/309856
+ spec.texout.write(b'''
+\\vspace{-.5\\ht\\strutbox}\\noindent\\hrulefill
+
+''')
spec.domfilter(r)
chunk = makeChunk(r, spec.images)
spec.texout.write(spec.layout.renderChunk(chunk))
\\usepackage[margin=20mm]{geometry}
\\begin{document}
This is glowfic
+
+\\vspace{-.5\\ht\\strutbox}\\noindent\\hrulefill
+
You \\emph{sure}?
+
+\\vspace{-.5\\ht\\strutbox}\\noindent\\hrulefill
+
Pretty sure.
\\end{document}
'''