Hi All,
I made a version of the newsletter using asciidoc and generated HTML, PDF and text.
See:
https://github.com/elextr/geany_stuff/commit/d094fb77d37bd00c4172041ea95be08...
The HTML has the images embedded just to make it a single file, they link by default.
Commands used:
For html:
asciidoc -a stylesdir=/home/lex/projects/zzz/newsletter/content -a toc -a toclevels=3 -a data-uri -n newsletter_2.asciidoc
For PDF (a2x is a wrapper that comes with asciidoc that runs dblatex or other toolchains for you and avoids all the problems poor Frank has been having when he was left with Latex and didn't know what options to use)
a2x newsletter_2.asciidoc
For text
a2x --format=text newsletter_2.asciidoc
I have done no formatting to either PDF or text. The HTML of course needed the css changed since the ids and classes had different names, the xhtml11.css is the source used.
Cheers Lex