Guile Bindings for Gumbo
Guile bindings for the Gumbo HTML5 parser.
Contains the Guile module (sxml gumbo)
, which exports the single method
html->sxml
.
Example:
(html->sxml "Hello")
⇒ (*TOP* (html (head) (body "Hello")))
(html->sxml "<!doctype html><title>Minimum valid document</title>")
⇒ (*TOP* (doctype html) (html (head (title "Minimum valid document")) (body)))