Reputation: 1391
Does anyone know where to get an offline version of the Asciidoctor's user manual: https://asciidoctor.org/docs/user-manual/
It is weird, how developers brag about Asciidoctor being able to export to PDF, HTML... But at the same time they fail to present a nice PDF document for offline use...
Upvotes: 0
Views: 306
Reputation: 520
You can get the raw adoc source from: https://github.com/asciidoctor/asciidoctor.org/blob/master/docs/user-manual.adoc and convert it using asciidoctor.
Feel free to grab the result directly from:
You can use the following to limit the amount of online resources needed:
git clone https://github.com/asciidoctor/asciidoctor.org.git
cd asciidoctor.org/docs
curl -O https://fontawesome.com/v4.7.0/assets/font-awesome-4.7.0.zip
7z x font-awesome-4.7.0.zip
asciidoctor -a !iconfont-remote=@ -a icons=font -a stylesdir=font-awesome-4.7.0/css -a !webfonts=@ user-manual.adoc
The resulting user-manual.html will only try to fetch the MathJax.js from a remote site.
I would recommend to open an issue at https://github.com/asciidoctor/asciidoctor.org proposing that they offer offline download options.
Upvotes: 1