Transformation d'un fichier Markdown en présentation reveal.js
pandoc --write revealjs --standalone --css perso.css --output habits.html habits.md
–standalone
: crée un fichier HTML complet–css perso.css
: ajoute une feuille de stylepandoc
pandoc --write=html5 \ --standalone \ --self-contained \ --css=perso_impression.css\ --toc \ --number-sections \ --section-divs \ --output=habits_impression.html
–standalone
: crée un fichier HTML complet–self-contained
: images et css inclus dans le HTML–css=perso_impression.css
: feuille de style personnalisée–toc
: créer un table des matières–number-sections
: ajout de la numérotation aux titres