Feature #4132
idea: osmo-gsm-manuals: use asciidoctor-pdf instead of a2x
0%
Description
Right now we are using a2x to convert from asciidoc to pdf. This means, that actually we are going through the following chain of conversions:
adoc -> docbook -> latex -> pdf
As described here: http://asciidoc.org/publishing-ebooks-with-asciidoc.html
If we used asciidoctor-pdf instead, we could directly convert to pdf:
adoc -> pdf
https://github.com/asciidoctor/asciidoctor-pdf
In theory, we should need a lot less dependencies then, have the conversion go faster and less sources for errors. We could hopefully remove this part, for example:
a2x $(A2X_OPTS) $(notdir $<) || (echo "ERROR: a2x failed! Running asciidoc to get verbose errors..."; \ asciidoc -v $(ASCIIDOC_OPTS) $(notdir $<); exit 1)
The downside is, that currently asciidoctor-pdf is only available from debian 10 (buster) onwards:
https://packages.debian.org/search?keywords=asciidoctor%2Dpdf
Maybe we can adopt this at some point in the future, when asciidoctor-pdf is included in the oldest debian release that we support.
History
#1 Updated by neels about 1 year ago
Related: instead of generating XML to produce the VTY reference documentation, the 'show online-help' command could output asciidoc, too.
I guess that could be easier on humans?
But there is some combinatory logic going on which we might need to revisit; but nothing a bit of sed couldn't solve, IIRC
#2 Updated by osmith 10 months ago
I've briefly evaluated if I could use this for the IMSI pseudonymization draft spec. The tool converts to pdf remarkably fast, but I could not find integration for message sequence charts (msc). It seems that we would need to add a plugin, which detects the msc block and calls mscgen first, and then load it with the -r command line option. This seems feasible, but it's nothing I should be spending time on now.