summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
-rw-r--r--fix-css.sed3
2 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 551c9bf..30f5007 100644
--- a/Makefile
+++ b/Makefile
@@ -7,8 +7,9 @@ all: ${GenSVG} document.html presentation.html
.SUFFIXES: .asciidoc .html
presentation.html: presentation.asciidoc
- asciidoc --out-file=$@ --backend=slidy $<
- sed -i -f fix-css.sed $@
+ asciidoc --out-file=$@.tmp --backend=slidy $<
+ sed -f fix-css.sed $@.tmp > $@
+ rm $@.tmp
.asciidoc.html:
asciidoc --out-file=$@ --backend=html $<
diff --git a/fix-css.sed b/fix-css.sed
index 62eecec..02b562b 100644
--- a/fix-css.sed
+++ b/fix-css.sed
@@ -1,4 +1,5 @@
-/<style type="text\/css">/s/$/p.help,div.toolbar {\
+/<style type="text\/css">/s/$/\
+p.help,div.toolbar {\
display:none !important;\
}\
html {\