Lecture overview -- Keyboard shortcut: 'u'  Previous page: Mirroring of HTML (1) -- Keyboard shortcut: 'p'  Next page: Mirroring of HTML (3) -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Help page about these notes  Alphabetic index  Course home  Lecture 7 - Page 11 : 24
Functional Programming in Scheme
LAML
Mirroring of HTML (2)

Instead of specifying where to add white spaces we tell where to suppress it

(p "Use" (kbd "HTML") _ ","  (kbd "XHTML") _ ","
        (kbd "XML")_ "," "or" (kbd "LAML") _ ".")

An HTML mirror expression which suppresses white space in front of punctuation characters.

<p>
  Use <kbd>HTML</kbd>, <kbd>XHTML</kbd>, <kbd>XML</kbd>, or <kbd>LAML</kbd>.
</p>

The rendering of the value of the HTML mirror expression.