Back to notes
Keyboard shortcut: 'u' 

(load (string-append laml-dir "laml.scm"))

(laml-style "simple-html4.0-loose")

(write-text-file
   (html
      (head (title "URL Abstractions"))
      (body
         (h1 "URL Abstractions")
         "The "
         (a
            'href
            "http://www.cs.auc.dk/~normark/scheme/index.html"
            "LAML software home page")
         "contains lots of information, such as "
         (a
            'href
            "http://www.cs.auc.dk/~normark/scheme/info/laml-easy-installation.html"
            "installation guide")
         "and "
         (a
            'href
            "http://www.cs.auc.dk/~normark/scheme/info/laml-motivation.html"
            "my own motivation")
         "for using LAML"
         (p)
         (p)))

   (string-append (startup-directory) laml-source-file-name-without-extension ".html"))