This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[docbook-apps] Re: Re: Problems with quotes in HTML export


On Fri, 6 Aug 2004, Stephane Bortzmeyer wrote:

Or in <xsl:output> ...

He's using the DocBook XSL stylesheets...

So am I. You can override xsl:output just like you can anything else. Here's an edited version of the wrapper stylesheet I use in one environment:


<xsl:stylesheet version='1.0'
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
  xmlns="http://www.w3.org/1999/xhtml";>

<xsl:import href="/path/to/xhtml/docbook.xsl"/>

<xsl:include href="local-defs.xsl"/>

  <xsl:output method="xml"
    encoding="ISO-8859-1"
    indent="yes"
    doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
    doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>

  ...
</xsl:stylesheet>

-- Paul Heinlein <heinlein@madboa.com>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]