diff --git a/README.md b/README.md new file mode 100644 index 0000000..95a1ef4 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +README +====== + +Dieses Repo enthält verschiedene Gesetzestexte im Markdown-Format (mit [Extras](http://pandoc.org/MANUAL.html#extension-fancy_lists)), plus Makefiles zur Erstellung von Formaten wie [EPUB](https://de.wikipedia.org/wiki/EPUB) und [MOBI](https://de.wikipedia.org/wiki/Mobipocket). + +Vorhandene Texte +---------------- + +- dsgvo: [EU-Datenschutz-Grundverordnung](http://eur-lex.europa.eu/legal-content/DE/TXT/?uri=CELEX:32016R0679) + +Geplante Texte +-------------- + +- dsg2000: [Datenschutzgesetz 2000](https://www.ris.bka.gv.at/GeltendeFassung.wxe?Abfrage=bundesnormen&Gesetzesnummer=10001597) + +Benötigte Software +------------------ + +- [Pandoc](http://pandoc.org/) +- [Kindlegen](https://www.amazon.com/gp/feature.html?docId=1000765211) für MOBI diff --git a/dsgvo/Makefile b/dsgvo/Makefile index 5246ff0..ee97464 100644 --- a/dsgvo/Makefile +++ b/dsgvo/Makefile @@ -15,11 +15,11 @@ INPUT += ch11/ch11.md $(sort $(wildcard ch11/ch11-art??.md)) all: $(OUTPUT) $(OUTPUT): $(INPUT) $(META) - pandoc -f markdown+footnotes+fancy_lists -t epub3 -o $(OUTPUT) --smart --toc \ + pandoc -f markdown+fancy_lists -t epub3 -o $(OUTPUT) --smart --toc \ --toc-depth=2 --epub-chapter-level=2 $(META) $(INPUT) mobi: $(OUTPUT) - /home/lup/Downloads/kindlegen/kindlegen $(OUTPUT) -c2 -o $(OUTPUT:.epub=.mobi) + kindlegen $(OUTPUT) -c2 -o $(OUTPUT:.epub=.mobi) clean: