summaryrefslogtreecommitdiff
path: root/miniany/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2021-09-30 14:22:48 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2021-09-30 14:22:48 +0200
commit9071723d55055307f0e92ae0f9d3194079aa086e (patch)
treeaae9b273319a5beee2c0b13ed8b3850ebe305f0d /miniany/Makefile
parent2e707c4702a06bbe6f44efc732820f6eacce27f9 (diff)
downloadcompilertests-9071723d55055307f0e92ae0f9d3194079aa086e.tar.gz
compilertests-9071723d55055307f0e92ae0f9d3194079aa086e.tar.bz2
fixed HTML generation for <code> tags
Diffstat (limited to 'miniany/Makefile')
-rw-r--r--miniany/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/miniany/Makefile b/miniany/Makefile
index 24c535e..7ebaf6c 100644
--- a/miniany/Makefile
+++ b/miniany/Makefile
@@ -1,10 +1,14 @@
-.PHONY: doc
+.PHONY: doc clean
doc: README.html
+clean:
+ rm cc.md README.html
+
README.html: cc.md
- md2html --fpermissive-url-autolinks < cc.md > README.html
+ md2html --fpermissive-url-autolinks < cc.md > README.html
cc.md: cc.wg
wordgrinder -c cc.wg cc.md
+ sed -i 's/`/\n```\n/g' cc.md
\ No newline at end of file