From 8068f9bf3883bcf2768d47fe885961a0223e0c45 Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 14 May 2012 16:14:12 -0700 Subject: Escape leading # signs in 'make email.md' --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index acc957dda..cce1857a1 100644 --- a/Makefile +++ b/Makefile @@ -136,7 +136,7 @@ out/doc/api/%.html: doc/api/%.markdown out/Release/node tools/doc/generate.js --format=html --template=doc/template.html $< > $@ email.md: ChangeLog tools/email-footer.md - bash tools/changelog-head.sh > $@ + bash tools/changelog-head.sh | sed 's|^\* #|* \\#|g' > $@ cat tools/email-footer.md | sed -e 's|__VERSION__|'$(VERSION)'|g' >> $@ blog.html: email.md -- cgit v1.2.1