Rudimentary support for <segmentedlist>. Just builds a table for the
entries, and works for HTML output only.
This commit is contained in:
parent
fd86fdc323
commit
10922add2f
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=5505
1 changed files with 17 additions and 0 deletions
|
@ -50,6 +50,23 @@
|
||||||
(define html-manifest
|
(define html-manifest
|
||||||
;; Write a manifest?
|
;; Write a manifest?
|
||||||
#f)
|
#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 ................................................... -->
|
<!-- Print only ................................................... -->
|
||||||
|
|
Loading…
Reference in a new issue