The default behavior of the xsl on the right-hand side of
http://www.w3schools.com/xsl/tryxslt.asp?xmlfile=cdcatalog&xsltfile=cdcatalog
is to display a 2-column table with the title and artist of each CD in the XML on the left-hand side. (This is shown by the default output under "Your Result" at the bottom.)
I want to modify the xsl to learn about applying xsl functions to text returned from XML elements. (Here is a whole list of xsl string functions.) For example, there is a function fn:upper-case(string) that will convert a string to uppercase.
What, then, would be the minimal modification to the xsl shown there that would produce the same table except with the CD titles all in uppercase?