Skip to content
Snippets Groups Projects
Commit e788fd93 authored by Julia's avatar Julia
Browse files

XSL richtige Datei

parent 77375b4b
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
xmlns:tei="http://www.tei-c.org/ns/1.0"
version="2.0">
<xsl:output method="html" />
<xsl:template match="/">
<html>
<head>
<title><xsl:value-of select="//tei:title"/></title>
</head>
<body>
<xsl:apply-templates select="//tei:body"/>
</body>
</html>
</xsl:template>
<xsl:template match="tei:lb"><br/></xsl:template>
<xsl:template match="tei:head/text()"><u><xsl:value-of select="."/></u></xsl:template>
<xsl:template match="tei:rs[@type='person']"><i><xsl:value-of select="."/></i></xsl:template>
</xsl:stylesheet>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment