This project generates a container image to be used to extract the notes of a slides.adoc
file.
The following projects are part of the Asciidoctor Slides infrastructure:
-
Generator encapsulating a Node.js application driving the creation of the
slides.html
HTML file -
Cookiecutter offering a simple mechanism to generate new presentation slide projects
-
Preview allowing the live preview of slides on
localhost:2020
-
Speaker Notes Exporter to export speaker notes (this project)
To get raw Asciidoc on stdout:
podman run --rm --volume ${PWD}:/convert vshn/slides-notes-exporter:1.0 /convert/slides.adoc
To get a file called speaker-notes.html
in the current directory:
podman run --rm --volume ${PWD}:/convert vshn/slides-notes-exporter:1.0 html /convert/slides.adoc
To get a file called speaker-notes.pdf
in the current directory:
podman run --rm --volume ${PWD}:/convert vshn/slides-notes-exporter:1.0 pdf /convert/slides.adoc