﻿<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
 <html>
  <body>
  <h2>German pronunciation dictionary</h2>
  <p>The location of the German PLS dictionary has changed. Get the <a href="http://script.blau.in/german/lexicon.xml">current version</a> (May 2009) with about 8000 entries.</p>
  <table border="1">
   <tr bgcolor="#CFCFCF">
      <th>Grapheme</th>
      <th>Phoneme</th>
   </tr>
   <xsl:for-each select="/lexicon/lexeme">
   <tr>
      <td><xsl:value-of select="grapheme"/></td>
      <td><xsl:value-of select="phoneme"/></td>
   </tr>
   </xsl:for-each>
  </table>
 </body>
 </html>
</xsl:template>

</xsl:stylesheet>

