aboutsummaryrefslogtreecommitdiff
path: root/html.scm
diff options
context:
space:
mode:
Diffstat (limited to 'html.scm')
-rw-r--r--html.scm19
1 files changed, 0 insertions, 19 deletions
diff --git a/html.scm b/html.scm
deleted file mode 100644
index 90dd039..0000000
--- a/html.scm
+++ /dev/null
@@ -1,19 +0,0 @@
-(define-module (html)
- #:export (parse-html)
- #:re-export (write)
- #:use-module (oop goops)
- )
-
-;; (setenv "LD_LIBRARY_PATH" (dirname (current-filename)))
-
-;; exposes the parse-html symbol
-(load-extension "libguile-html" "init_html")
-
-(define (fmt-hash-table t)
- `(@ ,@(hash-map->list cons t)))
-
-(define-method (write (t <hashtable>) port)
- (display (fmt-hash-table t) port))
-
-(define-method (display (t <hashtable>) port)
- (display (fmt-hash-table t) port))