summary refs log tree commit diff stats
path: root/lib/schmaltz.sld
diff options
context:
space:
mode:
Diffstat (limited to 'lib/schmaltz.sld')
-rw-r--r--lib/schmaltz.sld17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/schmaltz.sld b/lib/schmaltz.sld new file mode 100644 index 0000000..d54d53e --- /dev/null +++ b/lib/schmaltz.sld
@@ -0,0 +1,17 @@
1(define-library (boudin schmaltz)
2 (export render
3 render-string
4 wrap-paragraphs)
5
6 (import (scheme base)
7 (scheme case-lambda) ; case-lambda
8 (scheme eval) ; eval
9 (scheme read) ; read
10 (scheme repl) ; interaction-environment
11 (scheme write) ; display
12 (only (html-parser)
13 sxml->html)
14 (only (srfi 152)
15 string-split string-trim))
16
17 (include "lib/schmaltz.sls"))