]> git.scottworley.com Git - paperdoorknob/blame - paperdoorknob.py
test: Don't duplicate list of TeX modules in test
[paperdoorknob] / paperdoorknob.py
CommitLineData
92b11a10
SW
1# paperdoorknob: Print glowfic
2#
3# This program is free software: you can redistribute it and/or modify it
4# under the terms of the GNU General Public License as published by the
5# Free Software Foundation, version 3.
6
7
136277e3 8from bs4 import BeautifulSoup
23f31879
SW
9
10from args import spec_from_commandline_args
1452f8d3 11from glowfic import chunkDOMs, flatURL, makeChunk
23f31879 12from spec import Spec
92b11a10
SW
13
14
bf06f467
SW
15def parse(content: bytes) -> BeautifulSoup:
16 return BeautifulSoup(content, 'html.parser')
b25a2f90
SW
17
18
23f31879 19def process(spec: Spec) -> None:
d2a41ff4
SW
20 spec.texout.write(b'''\\documentclass{article}
21\\usepackage{graphicx}
23dabdf5 22\\usepackage{varwidth}
357f37be 23\\usepackage{wrapstuff}
d2a41ff4 24''')
e10b5b6f
SW
25 if spec.geometry is not None:
26 spec.texout.write(b'\\usepackage[' +
27 spec.geometry.encode('UTF-8') +
28 b']{geometry}\n')
29 spec.texout.write(b'\\begin{document}\n')
1452f8d3
SW
30 url = flatURL(spec.url)
31 html = parse(spec.htmlfilter(spec.fetcher.fetch(url)))
e6adf6ce 32 for r in chunkDOMs(html):
8be20b9d 33 spec.domfilter(r)
d2a41ff4
SW
34 chunk = makeChunk(r, spec.images)
35 spec.texout.write(spec.layout.renderChunk(chunk))
23f31879 36 spec.texout.write(b'\\end{document}\n')
47cfa3cd
SW
37
38
92b11a10 39def main() -> None:
23f31879
SW
40 with spec_from_commandline_args() as spec:
41 process(spec)
92b11a10
SW
42
43
44if __name__ == '__main__':
45 main()