summaryrefslogtreecommitdiffstats
path: root/genman.txr
blob: 2f22574357664069b897ca654481a5df33b56432 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@# This requires the man2html which was originally known as vh-man2html
@# and is now part of manutils.
@# See here: http://primates.ximian.com/~flucifredi/man/
@# It does not work with that other man2html written in Perl.
@(deffilter month-name
  ("01" "Jan") ("02" "Feb") ("03" "Mar") ("04" "Apr")
  ("05" "May") ("06" "Jun") ("07" "Jul") ("08" "Aug")
  ("09" "Sep") ("10" "Oct") ("11" "Nov") ("12" "Dec"))
@(bind txrhash @(hash :equal-based))
@(bind txlhash @(hash :equal-based))
@(bind tgthash txrhash)
Content-type: text/html
@(skip 15)
<H1>TXR</H1>
@(skip)Updated: @YEAR-@MONTH-@DAY<BR><A HREF="#index">Index</A>
@(collect)
@PREAMBLE
@(until)
txr - text processing language @(skip)
@(end)
@(bind lookup @[orf txrhash txlhash])
@(all)
txr - text processing language @VERSION
@  (and)
@  (collect :vars (BODY LOOKUP))
@    (some)
@BODY
@    (and)
<H2>13 TXR LISP</H2>
@      (set lookup @[orf txlhash txrhash])
@    (end)
@    (bind LOOKUP lookup)
@  (until)
<HR>
<A NAME="index">&nbsp;</A><H2>Index</H2>
@  (end)
@(end)
<HR>
@(collect :vars (TOC))
@  (some)
@TOC
@  (and)
<DT><A HREF="@nil">@nil TXR LISP</A><DD>
@  (set tgthash txlhash)
@  (and)
<DT><A HREF="@tag">@(coll :vars (sym))<TT>@sym</TT>@(end)
@    (do (mapdo (do unless [tgthash @1] (set [tgthash @1] tag))
                sym))
@  (end)
@(until)
This document was created by
@(end)
@(set BODY @(mapcar (do if (search-regex @1 #/<H[1-9]>/)
                          @1
                          (regsub #/<TT>.%<\/TT>/
                                  (do let ((tok [@1 4 -5]) tag)
                                        (if (match-str tok "@(")
                                          (let ((sym [tok 2 -1]))
                                            (set tag [txrhash sym]))
                                          (set tag [@@2 tok]))
                                        (if tag
                                          `<A HREF="@tag">@1</A>`
                                          @1))
                                  @1))
                    BODY
                    LOOKUP))
@(output)
<HTML>
<HEAD><TITLE>Manpage for TXR @VERSION</TITLE>
</HEAD><BODY>
<H2>Manpage for <A HREF="#lbAB">TXR </a>@VERSION</H2>
<H2>@{MONTH :filter month-name} @DAY, @YEAR</H2>
@(repeat)
@TOC
@(end)
@(repeat)
@PREAMBLE
@(first)
@(end)
@(repeat)
@BODY
@(end)
</BODY>
</HTML>
@(end)