This repo contains presentations/talks/slides shared to DOxMX
- Generate a markdown file
- Transform the markdown to a presentation with
pandoc
$( type -p podman docker | head -1 ) run \
--rm \
--volume ${PWD}:/data:z \
docker.io/pandoc/core:latest \
-t revealjs \
-s \
-o my_presentation.html \
my_presentation.md \
-V revealjs-url=https://unpkg.com/reveal.js/ \
-V theme=serif \
--slide-level 3To use other themes, add the flag:
-V theme=<THEME_NAME> \The list of included themes is found in the revealjs project
Now you can use your generated html file in a browser!