﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
1527	Makefile for HTML documentation	Andy Dustman <farcepest@…>	Jacob	"I wanted to be able to read the current SVN docs as HTML, so I put together a small Makefile (to go in the docs directory):
{{{
.SUFFIXES = .txt .html

%.html : %.txt
        rst2html.py $< $@

objects := $(patsubst %.txt,%.html,$(wildcard *.txt))
all: $(objects)
}}}
Assumes docutils and rst2html.py on your path, and GNU Make. Running make processes any .txt files to .html as needed. Will add as an attachment too to preserve tabs."	enhancement	closed	Documentation	dev	trivial	duplicate		farcepest@…	Accepted	0	0	0	0	0	0
