1
0
Fork 0

Allow numbers in shtml->html

* tekuti/page-helpers.scm (shtml->html): Allow numbers.
This commit is contained in:
Andy Wingo 2019-05-31 15:51:08 +02:00
parent 83fd0a044e
commit 9d9d39c7f5

View file

@ -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))))