Improve entity handling in the sxml module
This is useful as stexi->shtml uses *ENTITY* so handling this here means that the HTML output for texinfo is better.
This commit is contained in:
parent
82b797ee98
commit
57ee3c8988
1 changed files with 2 additions and 0 deletions
|
|
@ -359,6 +359,8 @@ list ATTRS and the child nodes in BODY."
|
|||
;; Unescaped, raw HTML output
|
||||
(('raw html)
|
||||
(display html port))
|
||||
(('*ENTITY* name)
|
||||
(simple-format port "&~A;" name))
|
||||
(((? symbol? tag) ('@ attrs ...) body ...)
|
||||
(element->html tag attrs body port))
|
||||
(((? symbol? tag) body ...)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue