From 01a757afbf43c0ab909a1eacd6d58341b44aada6 Mon Sep 17 00:00:00 2001 From: Michael Murtaugh Date: Tue, 12 May 2020 10:21:53 +0200 Subject: [PATCH] makefile --- .gitignore | 5 +++++ Makefile | 7 +++++++ README.md | 5 +++-- style.css | 3 +++ 4 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 Makefile create mode 100644 style.css diff --git a/.gitignore b/.gitignore index 9b5e2e8..1c20bab 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,7 @@ *~ __pycache__ +passwords.liq +*.wav +*.mp3 +*.ogg +*.html diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d498501 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ + +README.html: README.md + pandoc --from markdown \ + --to html5 \ + --standalone \ + --css style.css \ + $< -o $@ diff --git a/README.md b/README.md index 0edf930..4908fb8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ -Special Issue 12: Radio Implicancies -========================== +--- +title: "Special Issue 12: Radio Implicancies" +--- * [Radio Implicancies (xpub wiki)](https://pzwiki.wdka.nl/mediadesign/Category:Implicancies) * [Prototyping (xpub wiki)](https://pzwiki.wdka.nl/mediadesign/Prototyping/2019-2020/T3) diff --git a/style.css b/style.css new file mode 100644 index 0000000..fff34ab --- /dev/null +++ b/style.css @@ -0,0 +1,3 @@ +body { + margin: 5%; +} \ No newline at end of file