about summary refs log tree commit homepage
path: root/Documentation
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-09-17 20:15:31 -0700
committerEric Wong <normalperson@yhbt.net>2009-09-17 20:17:55 -0700
commit711ca5408415fd3f435d0a36d3284baeda51ce28 (patch)
tree2ac43cbedbcd20f8d6e5cb0be00d4407466cee5c /Documentation
parente46489991e6306ed5ebdbb3f8e72d21070f1317b (diff)
downloadunicorn-711ca5408415fd3f435d0a36d3284baeda51ce28.tar.gz
Kinda sorta works, still some Markdown => HTML formatting issues
to work out but it gives the site a reasonably consistent look.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/GNUmakefile b/Documentation/GNUmakefile
index 82cc88d..16fcaf0 100644
--- a/Documentation/GNUmakefile
+++ b/Documentation/GNUmakefile
@@ -1,7 +1,7 @@
 all::
 
 PANDOC = pandoc
-PANDOC_OPTS = -s -f markdown --email-obfuscation=none --sanitize-html
+PANDOC_OPTS = -f markdown --email-obfuscation=none --sanitize-html
 pandoc = $(PANDOC) $(PANDOC_OPTS)
 pandoc_html = $(pandoc) --toc -t html --no-wrap
 
@@ -24,7 +24,7 @@ install-man: man
 %.1: %.1.txt
         $(pandoc) -t man < $< > $@+ && mv $@+ $@
 %.1.html: %.1.txt
-        $(pandoc_html) -T $(basename $@) < $< > $@+ && mv $@+ $@
+        $(pandoc_html) < $< > $@+ && mv $@+ $@
 
 clean::
         $(RM) $(man1) $(html1)