| OLD | NEW |
| 1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
| 2 <xsl:stylesheet version="1.0" | 2 <xsl:stylesheet version="1.0" |
| 3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | 3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> |
| 4 | 4 |
| 5 <xsl:template match="/"> | 5 <xsl:template match="/"> |
| 6 <html> | 6 <html> |
| 7 <xsl:apply-templates/> | 7 <xsl:apply-templates/> |
| 8 <xsl:apply-templates select="document('resources/document-function-sourc
e.xml')/doc"/> | 8 <xsl:apply-templates select="document('resources/document-function-sourc
e.xml')/doc"/> |
| 9 </html> | 9 </html> |
| 10 </xsl:template> | 10 </xsl:template> |
| 11 | 11 |
| 12 <xsl:template match="para"> | 12 <xsl:template match="para"> |
| 13 <p><xsl:value-of select="."/></p> | 13 <p><xsl:value-of select="."/></p> |
| 14 </xsl:template> | 14 </xsl:template> |
| 15 </xsl:stylesheet> | 15 </xsl:stylesheet> |
| OLD | NEW |