aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usermanual/Makefile2
-rw-r--r--usermanual/docbook-utf8.xsl10
2 files changed, 11 insertions, 1 deletions
diff --git a/usermanual/Makefile b/usermanual/Makefile
index a43c025455..a8bdbc30ad 100644
--- a/usermanual/Makefile
+++ b/usermanual/Makefile
@@ -5,7 +5,7 @@ manual = $(topdir)/usermanual.xml
types = $(xmltotypes) $(htmltypes)
xmltotypes = pdf txt
htmltypes = html xhtml
-htmlxsl = $(if $(filter $@,$(foreach type,$(htmltypes),$(type)-nochunks)),http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl,http://docbook.sourceforge.net/release/xsl/current/$@/chunk.xsl)
+htmlxsl = $(if $(filter $@,$(foreach type,$(htmltypes),$(type)-nochunks)),docbook-utf8.xsl,http://docbook.sourceforge.net/release/xsl/current/$@/chunk.xsl)
htmlcssfile = docbook.css
htmlcss = $(topdir)/html.css
# htmlcssfile =
diff --git a/usermanual/docbook-utf8.xsl b/usermanual/docbook-utf8.xsl
new file mode 100644
index 0000000000..20612834fc
--- /dev/null
+++ b/usermanual/docbook-utf8.xsl
@@ -0,0 +1,10 @@
+<?xml version='1.0'?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version="1.0">
+
+<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"/>
+<xsl:output method="html"
+ encoding="UTF-8"
+ indent="no"/>
+
+</xsl:stylesheet>