Basic HTML documentation generation
[hcoop/domtool2.git] / configDefault / autodoc.cfg
... / ...
CommitLineData
1structure Autodoc :> AUTODOC_CONFIG = struct
2
3val htmlHeader = fn title =>
4 String.concat ["<html><head><title>",
5 title,
6 "</title><body><h1>",
7 title,
8 "</h1>\n"]
9
10val htmlFooter = "</body></html>"
11
12end