summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/invhtml2.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/invhtml2.xsl')
-rw-r--r--Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/invhtml2.xsl42
1 files changed, 0 insertions, 42 deletions
diff --git a/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/invhtml2.xsl b/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/invhtml2.xsl
deleted file mode 100644
index f2be578fc5d..00000000000
--- a/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/invhtml2.xsl
+++ /dev/null
@@ -1,42 +0,0 @@
-<?xml version='1.0'?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-
-<xsl:output method="html"/>
-<xsl:preserve-space elements="*"/>
-
-<xsl:template match="invitation">
-<html>
-<head>
-<title> Invitation (XSL/CSS formatting) </title>
-<link href="invit.css" rel="stylesheet" type="text/css"/>
-<!-- 12 November 1998 mg -->
-</head>
-<body>
-<h1>INVITATION</h1>
-<table>
-<tbody>
-<tr><td class="front">To: </td>
-<td><xsl:value-of select="@to"/></td></tr>
-<tr><td class="front">When: </td>
-<td><xsl:value-of select="@date"/></td></tr>
-<tr><td class="front">Venue: </td>
-<td><xsl:value-of select="@where"/></td></tr>
-<tr><td class="front">Occasion: </td>
-<td><xsl:value-of select="@why"/></td></tr>
-</tbody>
-</table>
-<xsl:apply-templates/>
-<p class="signature"><xsl:value-of select="@signature"/></p>
-</body>
-</html>
-</xsl:template>
-
-<xsl:template match="par">
-<p><xsl:apply-templates/></p>
-</xsl:template>
-
-<xsl:template match="emph">
-<em><xsl:apply-templates/></em>
-</xsl:template>
-
-</xsl:stylesheet>