A PDF converter for AsciiDoc based on web technologies.
3.3K
A PDF converter for AsciiDoc based on web technologies. It allows complex layouts to be defined with CSS and JavaScript, while writing the content in AsciiDoc.
In order to run this container you'll need docker installed.
$ docker run -i --rm \
--volume=$PWD:"/usr/app" \
-u $(id -u ${USER}):$(id -g ${USER}) \
asciidoctor-web-pdf:latest \
document.adoc
The --volume option will mount your local current directory ($PWD) on the container. Since we are using a non-root user we have to map our user to asciidoctor user in the container.
You can also use stdin and stdout without the need of volumes:
$ cat document.adoc | docker run -i --rm asciidoctor-web-pdf:latest - > document.pdf
We use SemVer for versioning.
This project is licensed under the MIT License.
Content type
Image
Digest
sha256:bda60787b…
Size
415.2 MB
Last updated
about 1 month ago
docker pull ggrossetie/asciidoctor-web-pdf