From 728d722adbac457c7f81fd8a9ab3f4927a434baf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= <hugo@lysator.liu.se> Date: Fri, 29 Oct 2021 02:00:41 +0200 Subject: [PATCH] Move module to (sxml gumbo). Earlier (sxml html) was used. But since this is a "dirty" implementation of HTML parsing, and not an HTML serializer I feel that it's better to use a more conservative name. --- scm/sxml/{html.scm => gumbo.scm} | 2 +- tests.scm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename scm/sxml/{html.scm => gumbo.scm} (92%) diff --git a/scm/sxml/html.scm b/scm/sxml/gumbo.scm similarity index 92% rename from scm/sxml/html.scm rename to scm/sxml/gumbo.scm index 511fe39..8679959 100644 --- a/scm/sxml/html.scm +++ b/scm/sxml/gumbo.scm @@ -1,4 +1,4 @@ -(define-module (sxml html) +(define-module (sxml gumbo) #:export (html->sxml)) (load-extension "libguile-gumbo" "scm_init_gumbo") diff --git a/tests.scm b/tests.scm index bdce670..5b07d19 100644 --- a/tests.scm +++ b/tests.scm @@ -1,5 +1,5 @@ (use-modules (srfi srfi-64) - (sxml html)) + (sxml gumbo)) (test-begin "Gumbo HTML test") -- GitLab