Skip to content
Snippets Groups Projects
Select Git revision
  • 0.10.1_1.0
  • master default
  • 0.10.1_0.5
  • 0.10.1_0.4
  • 0.10.1_0.3
  • 0.10.1_0.2
6 results

guile-gumbo

  • Clone with SSH
  • Clone with HTTPS
  • Hugo Hörnquist's avatar
    Hugo Hörnquist authored
    0d818fe6
    History

    Guile Bindings for Gumbo

    Gumbo was deprecated at 2023-02-15, with the recommendation to not use

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

    Building

    make
    make install DESTDIR=/usr/local

    Testing

    make check