summaryrefslogtreecommitdiff
path: root/bibliography.xsl
diff options
context:
space:
mode:
authorVivien Kraus <vivien@planete-kraus.eu>2021-04-15 14:43:18 +0200
committerVivien Kraus <vivien@planete-kraus.eu>2021-04-15 14:43:18 +0200
commitd3d710e3525853de849a5b14984da53a3925109e (patch)
treef26632bd1afd5a4857e06b5a041032ab0a870bb0 /bibliography.xsl
First commit1.0.0
Diffstat (limited to 'bibliography.xsl')
-rw-r--r--bibliography.xsl16
1 files changed, 16 insertions, 0 deletions
diff --git a/bibliography.xsl b/bibliography.xsl
new file mode 100644
index 0000000..f53ad75
--- /dev/null
+++ b/bibliography.xsl
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xsl:stylesheet
+ version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:html="http://www.w3.org/1999/xhtml"
+ xmlns:h4sp="http://h4sp.planete-kraus.eu/ns/h4sp">
+
+ <xsl:import href="bibtex.xsl" />
+
+ <xsl:output method="text" indent="no"/>
+ <xsl:strip-space elements="*" />
+
+ <xsl:template match="/">
+ <xsl:apply-templates select="/html:html/html:body/h4sp:bibliography" />
+ </xsl:template>
+</xsl:stylesheet>