HTML backend - element undefined

Subject: HTML backend - element undefined
From: Alexander Taranov <tay@xxxxxxxxxx>
Date: Fri, 25 Jul 97 13:54 MSD
this is because style-sheet is an SGML document,
so you may do something like

<![ CDATA [
(define *pre-start* (make formatting-instruction data: "<pre>"))
(define *pre-end* (make formatting-instruction data: "</pre>"))
]]>

(element q
	(sosofo-append
	  *pre-start*
	   (process-children)
          *pre-end*))

either you may use element flow object (see sgml backend):

(element q
	(make element gi: "pre"
	  (process-children)))


and finally, you may fake sgml parser by using constructs like
(string-append  "<"  "pre" ">")

Alexander

 DSSSList info and archive:  http://www.mulberrytech.com/dsssl/dssslist


Current Thread