- Start Container
-
Note
You can use the container to run Asciidoc tools without installation. The example show bash syntax. docker run -it -u $(id -u):$(id -g) \ -v "$(pwd)":/documents/ \ asciidoctor/docker-asciidoctor
- Create slides
-
Note
You can run the following command in the Asciidoc container after starting it. asciidoctor-revealjs -v \ checklist.adoc -o slides/checklist-default-ok.html asciidoctor-revealjs -v \ -a icons=font \ checklist.adoc -o slides/checklist-missing-checkboxes.html asciidoctor-revealjs -v \ -a icons=font -a docinfo=shared \ checklist.adoc -o slides/checklist-workaround1.html asciidoctor-revealjs -v \ -a icons=font -a docinfo=shared -a customcss=checklist-style.css \ checklist.adoc -o slides/checklist-workaround2.html