summaryrefslogtreecommitdiff
path: root/posts/sxml-html-guile.md
blob: f600d7f1043e6aaac411930d6ced8f2fdfc0c5ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
title: Rendering HTML with SXML and GNU Guile
date: 2015-04-10 18:00
tags: gnu, guile, wsu
summary: With a little effort, SXML can be used for HTML templates
---

GNU Guile provides modules for working with XML documents called SXML.
SXML provides an elegant way of writing XML documents as s-expressions
that can be easily manipulated in Scheme.  Here’s an example:

```scheme
(sxml->xml '(foo (bar (@ (attr "something")))))
```

```xml
<foo><bar attr="something" /></foo>
```

I don’t know about you, but I work with HTML documents much more often
than XML.  Since HTML is very similar to XML, we should be able to
represent it with SXML, too!

```scheme
(sxml->xml
 '(html
   (head
    (title "Hello, world!")
    (script (@ (src "foo.js"))))
   (body
    (h1 "Hello!"))))
```

```html
<html>
  <head>
    <title>Hello, world!</title>
    <script src="foo.js" /> <!-- what? -->
  </head>
  <body>
    <h1>Hello!</h1>
  </body>
</html>
```

That `<script>` tag doesn’t look right!  Script tags don’t close
themselves like that.  Well, we could hack around it:

```scheme
(sxml->xml
 '(html
   (head
    (title "Hello, world!")
    (script (@ (src "foo.js")) ""))
   (body
    (h1 "Hello!"))))
```

```html
<html>
  <head>
    <title>Hello, world!</title>
    <script src="foo.js"></script>
  </head>
  <body>
    <h1>Hello!</h1>
  </body>
</html>
```

Note the use of the empty string in `(script (@ (src "foo.js")) "")`.
The output looks correct now, great!  But what about the other void
elements?  We’ll have to remember to use the empty string hack each
time we use one.  That doesn’t sound very elegant.

Furthermore, text isn’t even escaped properly!

```scheme
(sxml->xml "Copyright © 2015  David Thompson <davet@gnu.org>")
```

```html
Copyright © 2015  David Thompson &lt;davet@gnu.org&gt;
```

The `<` and `>` braces were escaped, but `©` should’ve been rendered
as `&copy;`.  Why does this fail, too?  Is there a bug in SXML?

There’s no bug.  The improper rendering happens because HTML, while
similar to XML, has some different syntax rules.  Instead of using
`sxml->xml`, a new procedure that is tailored to the HTML syntax is
needed.  Introducing `sxml->html`:

```scheme
(define* (sxml->html tree #:optional (port (current-output-port)))
  "Write the serialized HTML form of TREE to PORT."
  (match tree
    (() *unspecified*)
    (('doctype type)
     (doctype->html type port))
    ;; Unescaped, raw HTML output
    (('raw html)
     (display html port))
    (((? symbol? tag) ('@ attrs ...) body ...)
     (element->html tag attrs body port))
    (((? symbol? tag) body ...)
     (element->html tag '() body port))
    ((nodes ...)
     (for-each (cut sxml->html <> port) nodes))
    ((? string? text)
     (string->escaped-html text port))
    ;; Render arbitrary Scheme objects, too.
    (obj (object->escaped-html obj port))))
```

In addition to being aware of void elements and escape characters, it
can also render `'(doctype "html")` as `<!DOCTYPE html>`, or render an
unescaped HTML string using `'(raw "frog &amp; toad")`.  If we replace
`sxml->xml` with `sxml->html` in the failing example above we can see
that it does the right thing.

```scheme
(sxml->html
 '((script (@ (src "foo.js")))
   "Copyright © 2015  David Thompson <davet@gnu.org>"))
```

```html
<script src="foo.js"></script>
Copyright &copy; 2015  David Thompson &lt;davet@gnu.org&gt;
```

Here’s the full version of my `(sxml html)` module.  It’s quite brief,
if you don’t count the ~250 lines of escape codes!  This code requires
Guile 2.0.11 or greater.

Happy hacking!

```scheme
;; Copyright © 2015  David Thompson <davet@gnu.org>
;;
;; This library is free software; you can redistribute it and/or
;; modify it under the terms of the GNU Lesser General Public License
;; as published by the Free Software Foundation; either version 3 of
;; the License, or (at your option) any later version.
;;
;; This library is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;; Lesser General Public License for more details.
;;
;; You should have received a copy of the GNU Lesser General Public
;; License along with this library.  If not, see
;; <http://www.gnu.org/licenses/>.

define-module (sxml html)
 #:use-module (sxml simple)
 #:use-module (srfi srfi-26)
 #:use-module (ice-9 match)
 #:use-module (ice-9 format)
 #:use-module (ice-9 hash-table)
 #:export (sxml->html))

define %void-elements
 '(area
   base
   br
   col
   command
   embed
   hr
   img
   input
   keygen
   link
   meta
   param
   source
   track
   wbr))

define (void-element? tag)
 "Return #t if TAG is a void element."
 (pair? (memq tag %void-elements)))

define %escape-chars
 (alist->hash-table
  '((#\" . "quot")
    (#\& . "amp")
    (#\' . "apos")
    (#\< . "lt")
    (#\> . "gt")
    (# . "iexcl")
    (# . "cent")
    (# . "pound")
    (# . "curren")
    (# . "yen")
    (# . "brvbar")
    (#\§ . "sect")
    (# . "uml")
    (# . "copy")
    (#\ª . "ordf")
    (# . "laquo")
    (# . "not")
    (# . "reg")
    (# . "macr")
    (# . "deg")
    (# . "plusmn")
    (#\² . "sup2")
    (#\³ . "sup3")
    (# . "acute")
    (#\µ . "micro")
    (# . "para")
    (# . "middot")
    (# . "cedil")
    (#\¹ . "sup1")
    (#\º . "ordm")
    (# . "raquo")
    (#\¼ . "frac14")
    (#\½ . "frac12")
    (#\¾ . "frac34")
    (#\¿ . "iquest")
    (#\À . "Agrave")
    (#\Á . "Aacute")
    (#\Â . "Acirc")
    (#\Ã . "Atilde")
    (#\Ä . "Auml")
    (#\Å . "Aring")
    (#\Æ . "AElig")
    (#\Ç . "Ccedil")
    (#\È . "Egrave")
    (#\É . "Eacute")
    (#\Ê . "Ecirc")
    (#\Ë . "Euml")
    (#\Ì . "Igrave")
    (#\Í . "Iacute")
    (#\Î . "Icirc")
    (#\Ï . "Iuml")
    (#\Ð . "ETH")
    (#\Ñ . "Ntilde")
    (#\Ò . "Ograve")
    (#\Ó . "Oacute")
    (#\Ô . "Ocirc")
    (#\Õ . "Otilde")
    (#\Ö . "Ouml")
    (# . "times")
    (#\Ø . "Oslash")
    (#\Ù . "Ugrave")
    (#\Ú . "Uacute")
    (#\Û . "Ucirc")
    (#\Ü . "Uuml")
    (#\Ý . "Yacute")
    (#\Þ . "THORN")
    (#\ß . "szlig")
    (#\à . "agrave")
    (#\á . "aacute")
    (#\â . "acirc")
    (#\ã . "atilde")
    (#\ä . "auml")
    (#\å . "aring")
    (#\æ . "aelig")
    (#\ç . "ccedil")
    (#\è . "egrave")
    (#\é . "eacute")
    (#\ê . "ecirc")
    (#\ë . "euml")
    (#\ì . "igrave")
    (#\í . "iacute")
    (#\î . "icirc")
    (#\ï . "iuml")
    (#\ð . "eth")
    (#\ñ . "ntilde")
    (#\ò . "ograve")
    (#\ó . "oacute")
    (#\ô . "ocirc")
    (#\õ . "otilde")
    (#\ö . "ouml")
    (# . "divide")
    (#\ø . "oslash")
    (#\ù . "ugrave")
    (#\ú . "uacute")
    (#\û . "ucirc")
    (#\ü . "uuml")
    (#\ý . "yacute")
    (#\þ . "thorn")
    (#\ÿ . "yuml")
    (#\Π. "OElig")
    (#\œ . "oelig")
    (#\Š . "Scaron")
    (#\š . "scaron")
    (#\Ÿ . "Yuml")
    (#\ƒ . "fnof")
    (#\ˆ . "circ")
    (# . "tilde")
    (#\Α . "Alpha")
    (#\Β . "Beta")
    (#\Γ . "Gamma")
    (#\Δ . "Delta")
    (#\Ε . "Epsilon")
    (#\Ζ . "Zeta")
    (#\Η . "Eta")
    (#\Θ . "Theta")
    (#\Ι . "Iota")
    (#\Κ . "Kappa")
    (#\Λ . "Lambda")
    (#\Μ . "Mu")
    (#\Ν . "Nu")
    (#\Ξ . "Xi")
    (#\Ο . "Omicron")
    (#\Π . "Pi")
    (#\Ρ . "Rho")
    (#\Σ . "Sigma")
    (#\Τ . "Tau")
    (#\Υ . "Upsilon")
    (#\Φ . "Phi")
    (#\Χ . "Chi")
    (#\Ψ . "Psi")
    (#\Ω . "Omega")
    (#\α . "alpha")
    (#\β . "beta")
    (#\γ . "gamma")
    (#\δ . "delta")
    (#\ε . "epsilon")
    (#\ζ . "zeta")
    (#\η . "eta")
    (#\θ . "theta")
    (#\ι . "iota")
    (#\κ . "kappa")
    (#\λ . "lambda")
    (#\μ . "mu")
    (#\ν . "nu")
    (#\ξ . "xi")
    (#\ο . "omicron")
    (#\π . "pi")
    (#\ρ . "rho")
    (#\ς . "sigmaf")
    (#\σ . "sigma")
    (#\τ . "tau")
    (#\υ . "upsilon")
    (#\φ . "phi")
    (#\χ . "chi")
    (#\ψ . "psi")
    (#\ω . "omega")
    (#\ϑ . "thetasym")
    (#\ϒ . "upsih")
    (#\ϖ . "piv")
    (#\. "ensp")
    (#\. "emsp")
    (#\. "thinsp")
    (#\– . "ndash")
    (#\— . "mdash")
    (#\‘ . "lsquo")
    (#\’ . "rsquo")
    (#\‚ . "sbquo")
    (#\“ . "ldquo")
    (#\” . "rdquo")
    (#\„ . "bdquo")
    (#\† . "dagger")
    (#\‡ . "Dagger")
    (#\• . "bull")
    (#\… . "hellip")
    (#\‰ . "permil")
    (#\′ . "prime")
    (#\″ . "Prime")
    (#\‹ . "lsaquo")
    (#\› . "rsaquo")
    (#\‾ . "oline")
    (#\⁄ . "frasl")
    (#\€ . "euro")
    (#\ . "image")
    (#\℘ . "weierp")
    (#\ . "real")
    (#\™ . "trade")
    (#\ . "alefsym")
    (#\← . "larr")
    (#\↑ . "uarr")
    (#\→ . "rarr")
    (#\↓ . "darr")
    (#\↔ . "harr")
    (#\↵ . "crarr")
    (#\⇐ . "lArr")
    (#\⇑ . "uArr")
    (#\⇒ . "rArr")
    (#\⇓ . "dArr")
    (#\⇔ . "hArr")
    (#\∀ . "forall")
    (#\∂ . "part")
    (#\∃ . "exist")
    (#\∅ . "empty")
    (#\∇ . "nabla")
    (#\∈ . "isin")
    (#\∉ . "notin")
    (#\∋ . "ni")
    (#\∏ . "prod")
    (#\∑ . "sum")
    (#\− . "minus")
    (#\∗ . "lowast")
    (#\√ . "radic")
    (#\∝ . "prop")
    (#\∞ . "infin")
    (#\∠ . "ang")
    (#\∧ . "and")
    (#\∨ . "or")
    (#\∩ . "cap")
    (#\∪ . "cup")
    (#\∫ . "int")
    (#\∴ . "there4")
    (#\∼ . "sim")
    (#\≅ . "cong")
    (#\≈ . "asymp")
    (#\≠ . "ne")
    (#\≡ . "equiv")
    (#\≤ . "le")
    (#\≥ . "ge")
    (#\⊂ . "sub")
    (#\⊃ . "sup")
    (#\⊄ . "nsub")
    (#\⊆ . "sube")
    (#\⊇ . "supe")
    (#\⊕ . "oplus")
    (#\⊗ . "otimes")
    (#\⊥ . "perp")
    (#\⋅ . "sdot")
    (#\⋮ . "vellip")
    (#\⌈ . "lceil")
    (#\⌉ . "rceil")
    (#\⌊ . "lfloor")
    (#\⌋ . "rfloor")
    (#\〈 . "lang")
    (#\〉 . "rang")
    (#\◊ . "loz")
    (#\♠ . "spades")
    (#\♣ . "clubs")
    (#\♥ . "hearts")
    (#\♦ . "diams"))))

define (string->escaped-html s port)
 "Write the HTML escaped form of S to PORT."
 (define (escape c)
   (let ((escaped (hash-ref %escape-chars c)))
     (if escaped
         (format port "&~a;" escaped)
         (display c port))))
 (string-for-each escape s))

define (object->escaped-html obj port)
 "Write the HTML escaped form of OBJ to PORT."
 (string->escaped-html
  (call-with-output-string (cut display obj <>))
  port))

define (attribute-value->html value port)
 "Write the HTML escaped form of VALUE to PORT."
 (if (string? value)
     (string->escaped-html value port)
     (object->escaped-html value port)))

define (attribute->html attr value port)
 "Write ATTR and VALUE to PORT."
 (format port "~a=\"" attr)
 (attribute-value->html value port)
 (display #\" port))

define (element->html tag attrs body port)
 "Write the HTML TAG to PORT, where TAG has the attributes in the
ist ATTRS and the child nodes in BODY."
 (format port "<~a" tag)
 (for-each (match-lambda
            ((attr value)
             (display #\space port)
             (attribute->html attr value port)))
           attrs)
 (if (and (null? body) (void-element? tag))
     (display " />" port)
     (begin
       (display #\> port)
       (for-each (cut sxml->html <> port) body)
       (format port "</~a>" tag))))

define (doctype->html doctype port)
 (format port "<!DOCTYPE ~a>" doctype))

define* (sxml->html tree #:optional (port (current-output-port)))
 "Write the serialized HTML form of TREE to PORT."
 (match tree
   (() *unspecified*)
   (('doctype type)
    (doctype->html type port))
   ;; Unescaped, raw HTML output
   (('raw html)
    (display html port))
   (((? symbol? tag) ('@ attrs ...) body ...)
    (element->html tag attrs body port))
   (((? symbol? tag) body ...)
    (element->html tag '() body port))
   ((nodes ...)
    (for-each (cut sxml->html <> port) nodes))
   ((? string? text)
    (string->escaped-html text port))
   ;; Render arbitrary Scheme objects, too.
   (obj (object->escaped-html obj port))))
```