Hello there, A while back, I was asking how to convert to docbook using openoffice, and I was guided (thanks to Dave Pawson) to a solution. Today I realized that a slightly different one was applied to OO:
http://lxr.go-oo.org/source/framework/filter/source/docbook/sofftodocbookheadings.xsl <xsl:template match="text:tab-stop"> <xsl:call-template name="write-breakable-whitespace"> <xsl:with-param name="whitespaces" select="8"/> </xsl:call-template> </xsl:template> why are tabs replaced with 8 spaces instead of a tab character ? <xsl:template match="text:tab-stop"> <xsl:text>	</xsl:text> </xsl:template> As a side note I think there is still a template missing: <xsl:template match="text:line-break"> <xsl:text> </xsl:text> </xsl:template> Thanks, -- Mathieu --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
