Skip to content

Commit b3a86e3

Browse files
committed
Documentation converted to reST
I had to drop the Japanese doc, but I'd be happy to restore it in reST format.
1 parent 8bd08c4 commit b3a86e3

File tree

8 files changed

+374
-1012
lines changed

8 files changed

+374
-1012
lines changed

doc/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/*.html

doc/Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
RSTCSS = $(shell python -c 'import docutils.writers.html4css1 as m; print m.Writer.default_stylesheet_path')
2+
RSTOPTS = --stylesheet-path=style.css,$(RSTCSS) --initial-header-level=2
3+
4+
HTML = $(patsubst %.rst,%.html,$(wildcard *.rst))
5+
6+
.PHONY: clean
7+
8+
all : html
9+
10+
html : $(HTML)
11+
12+
%.html: %.rst style.css
13+
rst2html $(RSTOPTS) $< $@
14+
15+
clean:
16+
rm -f $(HTML)

doc/index-ja.html

Lines changed: 0 additions & 139 deletions
This file was deleted.

doc/index.html

Lines changed: 0 additions & 140 deletions
This file was deleted.

0 commit comments

Comments
 (0)