summary refs log tree commit diff stats
path: root/lib/schmaltz.sld
blob: d54d53e0fc16ba34427966af1603b59e4a35b0c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(define-library (boudin schmaltz)
  (export render
          render-string
          wrap-paragraphs)

  (import (scheme base)
          (scheme case-lambda)          ; case-lambda
          (scheme eval)                 ; eval
          (scheme read)                 ; read
          (scheme repl)                 ; interaction-environment
          (scheme write)                ; display
          (only (html-parser)
                sxml->html)
          (only (srfi 152)
                string-split string-trim))

  (include "lib/schmaltz.sls"))