Exercise 6

Create an XSLT stylesheet which creates an unordered list. Create a new bullet point for each letter. The unordered list can be created using the <ul> element. The bullets can be added using the <li> element.

For each letter in the collection, you should display the names of the sender and the recipient, the year and ALL the notes that are available.

The names of the sender and the recipient should be preceded by labels: "Author: " and "Sender: ". These labels can be given in the <xsl:text> element.

The notes are given within <note> elements, underneath the <annotations> element. There can be multiple <note> elements for one letter.

Answers | Continue with the tutorial