Allow numbers in shtml->html
* tekuti/page-helpers.scm (shtml->html): Allow numbers.
This commit is contained in:
parent
83fd0a044e
commit
9d9d39c7f5
1 changed files with 2 additions and 0 deletions
|
@ -216,6 +216,8 @@ present."
|
|||
(print-text/quoted tree port))
|
||||
((? procedure?)
|
||||
(with-output-to-port port tree))
|
||||
((? number?)
|
||||
(display tree port))
|
||||
(tree
|
||||
(error "unexpected shtml" tree))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue