- spec.texout.write(b'''\\begin{document}
-\\newcommand{\\href}[2]{#2\\footnote{#1}}
-''')
- url = flatURL(spec.url)
- dom = parse(spec.htmlfilter(spec.fetcher.fetch(url)))
- num_chunks = ilen(chunkDOMs(dom))
- for i, r in enumerate(chunkDOMs(dom)):
- percent = 100.0 * i / num_chunks
- spec.log(f'Processing chunk {i} of {num_chunks} ({percent:.1f}%)\r')
- spec.domfilter(r)
- chunk = makeChunk(r, spec.images)
- spec.texout.write(spec.texfilter(spec.layout.renderChunk(chunk)))
- spec.log('')
+ 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()