You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
all: pdf html
|
|
|
|
pdf: coc.md
|
|
pandoc -f markdown -t latex -o coc.pdf -Vgeometry:margin=2cm -Vpapersize=a4 -Vlang=de coc.md
|
|
|
|
html: coc.md
|
|
pandoc -f markdown -t html5 --standalone -o coc.html -Vlang=de coc.md
|
|
|
|
clean:
|
|
rm -rf coc.pdf coc.html
|