[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: Re: [docbook-apps] HTML elements in DocBook
Hi,
The DocBook stylesheets have templates that match
on DocBook elements. The template for the entry element does an
xsl:apply-templates on its children, but html:input is not a DocBook
element. That's why you get that message. It is warning you that
there is no template to handle that input.
I presume you just want to copy through any
elements in the html namespace. If that is the case, then adding a
template like this should be sufficient:
<xsl:template match="html:*">
<xsl:copy> <xsl:copy-of select="@*"/> <xsl:apply-templates/> </xsl:copy> </xsl:template> And be sure to add the html namespace declaration
to your stylesheet.
|
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]