aboutsummaryrefslogtreecommitdiff
path: root/html.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-07-30 21:52:54 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-07-31 03:14:07 +0200
commit6297081081857b38da56665df7a1e91ca7e8ef82 (patch)
tree3453bc47be9b41d4486e142c05ca51a144169a99 /html.scm
parentUpdate monad library. (diff)
downloadtexttv-6297081081857b38da56665df7a1e91ca7e8ef82.tar.gz
texttv-6297081081857b38da56665df7a1e91ca7e8ef82.tar.xz
Update all dependencies to work.
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))