Back to slide
Keyboard shortcut: 'u' 

(load (string-append laml-dir "laml.scm"))
(style "simple-html4.0-loose")

(write-text-file
 (html
  (head 
   (title "This is the document title")
   )

  (body 
   (h1 "Document title")

   (p "Here is the first paragraph of the document")

   (p "The second paragraph has an" (em "emphasized item")
      "and a" (b "bold face item")_".")
   )
  )
 (full-source-path-with-extension "html"))