Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 1.22 KB

README.adoc

File metadata and controls

26 lines (15 loc) · 1.22 KB

Asciidoctor Slides Notes Exporter

This project generates a container image to be used to extract the notes of a slides.adoc file.

Asciidoctor Slides Infrastructure

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)

Usage

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