Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-05-15 03:14:12 +0400
committerisaacs <i@izs.me>2012-05-15 04:29:47 +0400
commit8068f9bf3883bcf2768d47fe885961a0223e0c45 (patch)
tree576fd6bc5a35ffb0093df322a67fbab0c0404492
parent14a5b45c06c327c838d93130cdfeec03e8fad1fb (diff)
Escape leading # signs in 'make email.md'
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index acc957dda7a..cce1857a1ae 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