blob: 7fd17b51f4d54045534b0627197a0ccc325edef3 (
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
|
;; The modules to document
(define *modules*
'(((statprof)
"Statistical profiler")
((sxml apply-templates)
"A more XSLT-like approach to SXML transformations")
((sxml fold)
"Fold-based SXML transformation operators")
((sxml simple)
"Convenient XML parsing and serializing")
((sxml ssax)
"Functional-style XML parsing for Scheme")
((sxml ssax input-parse)
"The SSAX tokenizer, optimized for Guile")
((sxml transform)
"A higher-order SXML transformation operator, "
(code "pre-post-order"))
((sxml xpath)
"XPath for SXML")
((texinfo)
"Parse texinfo files or fragments into " (code "stexi") ", a "
"scheme representation")
((texinfo docbook)
"Transform a subset of docbook into " (code "stexi"))
((texinfo html)
"Transform " (code "stexi") " into HTML")
((texinfo indexing)
"Extract an index from a piece of " (code "stexi"))
((texinfo string-utils)
"String utility functions used by the texinfo processor")
((texinfo plain-text)
"Render " (code "stexi") " as plain text")
((texinfo serialize)
"Render " (code "stexi") " as texinfo")
((texinfo reflection)
"Enable texinfo across Guile's help system")))
(define *module-sources*
'(((sxml ssax) . "http://ssax.sourceforge.net/")
((sxml xpath) . "http://ssax.sourceforge.net/")
((sxml transform) . "http://ssax.sourceforge.net/")
((sxml apply-templates) . "http://ssax.sourceforge.net/")
((sxml ssax input-parse) . "http://ssax.sourceforge.net/")
((htmlprag) . "http://neilvandyke.org/htmlprag/")))
(define *scripts* '())
;; arch-tag: e493ad42-ad58-451c-a2d6-b17ba6c1d1d0
|