Declare character encoding

Though the page is output entirely in US-ASCII with Unicode characters
escaped as Ӓ that still doesn't appease W3C's HTML validator. It
wants us to explicitly declare an encoding. If we declare US-ASCII, it
also complains. Therefore declare UTF-8.
This commit is contained in:
Lassi Kortela 2020-08-07 16:14:12 +03:00
parent 44fd3f10d3
commit b248110155
1 changed files with 3 additions and 1 deletions

View File

@ -50,7 +50,8 @@
(else (cdr x)))))
(display ">")
(for-each display-sxml body)
(display* "</" (car x) ">")))
(unless (memq (car x) '(meta))
(display* "</" (car x) ">"))))
((string? x)
(string-for-each display-char x))
(else (error "Bad:" x))))
@ -232,6 +233,7 @@
(@ (lang "en"))
(head
(title "Scheme Registry")
(meta (@ (charset "UTF-8")))
(style ""
"body { font-family: sans-serif; background-color: beige;"
" max-width: 40em; margin: 12px; }"