[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: Re: [docbook-apps] Question: Removing Namespace attribute in XHTML header style element
Actually, you probably need to add the XHTML
namespace to your style element. The output elements for XHTML are in the
XHMTL namespace, and if you output an element not in that namespace, the XSLT
processor assigns it the null namespace. To ensure any customization's
output is in the XHTML namespace, make it the default namespace for your
customization stylesheet:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml"
version="1.0">
|
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]