XSLT is a method of transforming XML with a set of rules, functions, and selectors. Transformations can be complex or simple, but the benefit of using XSLT is immediately obvious after first use. Consider the following: <posts> <post> <title>XSLT!</title> <description>A short post about XSLT</description> <content date = "01/03/2009"> Lorum ipsum </content> </post> <posts> The naive [...]