(load (string-append laml-dir "laml.scm"))
(laml-style "simple-xhtml1.0-transitional-validating")
; (lib-load "xhtml1.0-convenience.scm")

Show source file in large font In char-ref: Link from meta-props to it's cross reference table entry 
(define meta-props (list 'http-equiv "Content-Type" 'content "text/html; charset=iso-8859-1")) Show source file in large font In char-ref: Link from html-props to it's cross reference table entry 
(define html-props (list 'xmlns "http://www.w3.org/1999/xhtml")) (set! xml-validate-contents? #t) (set! xml-check-attributes? #t) (write-html '(raw prolog) (html html-props (head (meta meta-props) (title "Character reference example")) (body (p "When we write '<' and '>' these characters are translated to HTML character references &lt; and &gt;") (p "Notice, in the LAML source, how the previous paragraph is written. We make good use of the HTML transformation table.") (p "The character < can also be written as a character entity" (char-ref 60) "or" (char-ref "lt") _ "." "This looks strange in the the rendered page, but take a look in the LAML source.") (p "Special characters can also be used, for instance" (char-ref "Lambda") "and" (char-ref 937) _ "." "Please take a look in the LAML source.") ) ) ) (end-laml)