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:
authorMatt Ranney <mjr@ranney.com>2010-05-05 08:17:29 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-05-05 08:36:10 +0400
commiteb4951d499a18b7cc92929ddb6709b697edd3c3e (patch)
treeb1dca39f89c14db5d714fcfd889d7641e573a877 /Makefile
parent453c9e6411527018c61245fb2151946b79365bac (diff)
Add proper HTML header for changelog so UTF-8 works.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 610e3cb71d2..12ea89e9ed3 100644
--- a/Makefile
+++ b/Makefile
@@ -49,10 +49,8 @@ doc/api.html: doc/api.markdown doc/api_header.html doc/api_footer.html
| sed "s/<h2>\(.*\)<\/h2>/<h2 id=\"\1\">\1<\/h2>/g" \
| cat doc/api_header.html - doc/api_footer.html > doc/api.html
-doc/changelog.html: ChangeLog
- echo '<html><head><title>Node.js ChangeLog</title> <link rel="stylesheet" href="./pipe.css" type="text/css" /> <link rel="stylesheet" href="./pipe-quirks.css" type="text/css" /> <body><h1>Node.js ChangeLog</h1> <pre>' > doc/changelog.html
- cat ChangeLog >> doc/changelog.html
- echo '</pre></body></html>' >> doc/changelog.html
+doc/changelog.html: ChangeLog doc/changelog_header.html doc/changelog_footer.html
+ cat doc/changelog_header.html ChangeLog doc/changelog_footer.html > doc/changelog.html
doc/node.1: doc/api.markdown
ronn --roff doc/api.markdown > doc/node.1