Lecture overview -- Keyboard shortcut: 'u'  Previous page: The idea of mirroring -- Keyboard shortcut: 'p'  Next page: Mirroring of XHTML (2) -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Help page about these notes  Alphabetic index  Course home  Page 7 : 26
Document Description and Processing in Scheme
Mirroring of XHTML (1)

Attributes are handled by simulated keyword parameters

Textual content is passed as quoted strings

There is white space between content strings unless explicitly suppressed

(a 'href "http://www.cs.aau.dk" 'target "main" "A link to" "CS at Aalborg")

An illustration of the most basic mirror rules of LAML.

<a href="http://www.cs.aau.dk" target="main">A link to CS at Aalborg</a>

The XHTML counterpart.

We will make actual LAML demos while we go along...