- 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'''
-\\wrapstuffclear\\vspace{-.5\\ht\\strutbox}\\noindent\\hrulefill
-
-''')
- spec.domfilter(r)
- chunk = makeChunk(r, spec.images)
- spec.texout.write(spec.layout.renderChunk(chunk))
+ spec.texout.write(br'''\begin{document}
+\newcommand{\href}[2]{#2\footnote{\detokenize{#1}}}
+\def\glowiconsize{%fmm}
+\newcommand{\glowicon}[1]{\includegraphics[
+ width=\glowiconsize,height=\glowiconsize,keepaspectratio
+]{#1}}
+\newcommand{\ifnotempty}[2]{\expandafter\ifx\expandafter\relax
+ \detokenize{#1}\relax\else #2\fi}
+%s
+''' % (spec.icon_size, spec.layout))
+ Thread(spec).emit()