Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.08 KB

README.adoc

File metadata and controls

42 lines (33 loc) · 1.08 KB

Checklist Bug in asciidoctor-revealjs

Re-Create slides

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