Lecture overview -- Keyboard shortcut: 'u'  Previous page: Mirroring of XHTML (2) -- Keyboard shortcut: 'p'  Next page: Mirroring of XHTML (4) - More of the same... -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  Annotated slide -- Keyboard shortcut: 't'  Alphabetic index  Help page about these notes  Course home    Slide 9 : 26

Mirroring of XHTML (3)
Lists of contents and lists of attributes are processed recursively and spliced together with their context
(body
    (ul 
      (map li (list "one" "two" "three")) 
    )
  )
 )
)
<body>
  <ul><li>one</li> <li>two</li> <li>three</li></ul>
</body>