Mercurial > genshi > mirror
annotate doc/Makefile @ 282:24b3cbbc1b1b trunk
Fix `starts-with()` XPath function so that it actually compares the two strings. Closes #61.
author | cmlenz |
---|---|
date | Mon, 09 Oct 2006 20:45:17 +0000 |
parents | 4d81439bc097 |
children |
rev | line source |
---|---|
226 | 1 HTML_FILES = \ |
2 builder.html \ | |
3 index.html \ | |
4 streams.html \ | |
241
4d81439bc097
* Added basic documentation for the text-based template language.
cmlenz
parents:
226
diff
changeset
|
5 text-templates.html \ |
226 | 6 xml-templates.html \ |
7 xpath.html | |
8 | |
9 all: $(HTML_FILES) | |
10 | |
11 %.html: %.txt | |
12 rst2html.py --exit-status=3 $< $@ | |
13 | |
14 clean: | |
15 rm -rf $(HTML_FILES) |