Lecture overview -- Keyboard shortcut: 'u'  Previous page: Language Syntax -- Keyboard shortcut: 'p'  Next page: Exercise clause and its subclauses -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Help page about these notes  Alphabetic index  Course home    Page 24 : 38
Meta Lecture Notes
Source-program and its subclauses

An illustration of the important source-program clause

;start here

(define (document ttl body-form)
 (html html-props
  (head 
   (meta meta-props) (title ttl))
  (body 
    body-form)))

(define validate-html? #t)
(define check-html-attributes? #t)
(define transliterate-character-data? #t)
(define check-element-prohibitions? #t)

; Write a WWW page with title and body to f.html, provided
; that this file is located in f.laml.  You must write this buffer
; to a file, such as f.laml, before you LAML process it.
(write-html '(raw prolog)
 (document
  "TITLE"
  "BODY"
 )
)

;end here

An excerpt of a skeleton LAML document. We have illustrate both seletion of a source program, a coloring of the inserted part.

/user/normark/scheme/styles/xml-in-laml/lecture-notes/man/meta-example/meta-lecture-notes.lamlThe LAML source of this page.

The LAML source of this page.