(load (string-append laml-dir "laml.scm"))
(laml-style "simple-xhtml1.0-strict-validating")

Show source file in small font In mirror2: Link from laml-url to it's cross reference table entry 2.1. Parameters
(define laml-url "http://www.cs.auc.dk/~normark/laml/") Show source file in small font In mirror2: Link from html-write-clause to it's cross reference table entry 2.3. Whitespace handling
; html-write-clause ; Writing the HTML fragment to an HTML file. (write-html 'pp (html (head (title "White space handling") ) (body (p "This is the" (em "first") "paragraph.") ; A program source marker WITHOUT a link to the documentation (p "This is the second" (b "paragraph") _ ".") ; A linked program source marker to section 2.3:
'Whitespace handling'
Mark char: b (p (list (kbd "This") "is" "the" "third" "paragraph" _ ".")) ; A linked program source marker to section 2.3:
'Whitespace handling'
Mark char: c (p (list (kbd "This") "is" "the" "fourth" 'class "third" "paragraph" _ ".")) ; A linked program source marker to section 2.3:
'Whitespace handling'
Mark char: d (p (list "This" (list (b "is") "the") "fifth" "paragraph" _ ".")) ; A linked program source marker to section 2.3:
'Whitespace handling'
Mark char: e (p (list "This" (list (b "is") "the" 'class "third") "sixth" "paragraph" _ ".")) ; A linked program source marker to section 2.3:
'Whitespace handling'
Mark char: f (p (list "This" "is" "t") _ "h" _ (list "e" "seventh") (list (list (list "paragraph"))) _ ".") ; A linked program source marker to section 2.3:
'Whitespace handling'
Mark char: g ) ) ) (end-laml)