Rudimentary support for <segmentedlist>. Just builds a table for the

entries, and works for HTML output only.
This commit is contained in:
Nik Clayton 1999-09-03 17:12:43 +00:00
parent fd86fdc323
commit 10922add2f
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=5505

View file

@ -50,6 +50,23 @@
(define html-manifest
;; Write a manifest?
#f)
<!-- Understand <segmentedlist> and related elements. Simpleminded,
and only works for the HTML output. -->
(element segmentedlist
(make element gi: "TABLE"
(process-children)))
(element seglistitem
(make element gi: "TR"
(process-children)))
(element seg
(make element gi: "TD"
attributes: '(("VALIGN" "TOP"))
(process-children)))
]]>
<!-- Print only ................................................... -->