Re: DOCBOOK-APPS: How can I get stylesheet to bold?

2001-08-06 Thread Jorge Godoy
Yann Dirson [EMAIL PROTECTED] writes: On Fri, Aug 03, 2001 at 02:46:57PM -0400, Norman Walsh wrote: / Bob Stayton [EMAIL PROTECTED] was heard to say: | xsl:template match=emphasis | xsl:choose | xsl:when test=@role='bold'|@role='strong' !-- changed line -- I think you mean

RE: DOCBOOK-APPS: Autogen title prefixes, htmlhelp.xsl

2001-08-06 Thread Bob Stayton
From: Bradford, Denis [EMAIL PROTECTED] Switching from htmlhelp.dsl to htmlhelp.xsl, one difference seems to be that the xsl generates chapter titles in this form: Chapter 1. Title. We don't want this for help topics - the dsl stylesheet did a more help-like title, omitting the

DOCBOOK-APPS: Re: [xsl] not wellformed contents of xsl:template

2001-08-06 Thread Jean-Baptiste Quenot
* Lisa Rupe: Is it possible to put HTML tags that are not well-formed into xsl:template? Yes, by using CDATA sections ![CDATA[/td/tr/table]] or by escaping and to lt; and gt; in a xsl:text statement xsl:textlt;/tdgt;lt;/trgt;lt;/tablegt;/xsl:text Cheerio! -- Jean-Baptiste Quenot

Re: DOCBOOK-APPS: Re: [xsl] not wellformed contents of xsl:template

2001-08-06 Thread Norman Walsh
/ Jean-Baptiste Quenot [EMAIL PROTECTED] was heard to say: | * Lisa Rupe: | | Is it possible to put HTML tags that are not well-formed into | xsl:template? It can be done, but it is almost always a bad idea. The only way that it can be achieved is by disabling output escaping. Why