2021-05-28 20:03:42 +02:00
|
|
|
#!/bin/bash
|
2022-02-07 19:56:57 +01:00
|
|
|
# Commande pandoc qui transforme un fichier markdown (example.md)
|
|
|
|
# en appliquant une css du même nom (example.css)
|
2021-05-28 20:03:42 +02:00
|
|
|
|
2022-02-07 19:56:57 +01:00
|
|
|
pandoc --standalone --css $1.css \
|
|
|
|
--from markdown --to html \
|
|
|
|
--output ./index.html $1.md \
|
|
|
|
--metadata pagetitle=$1;
|
2021-05-28 20:03:42 +02:00
|
|
|
|
2022-02-07 19:56:57 +01:00
|
|
|
echo "### Transformation du Markdown $1.md en HTML"
|