Next in thread → Next in month →

Re: [docbook-apps] name of line break processing instruction

From
Chris Chiasson <>
Date
2006-12-12T14:34:03+00:00
ID
Thread
Re: [docbook-apps] name of line break processing instruction
I had to single quote the lb in the xsl you gave and I used this (from
the docbook-apps list archives) for html line breaks:

	<xsl:template match="processing-instruction('lb')">
		<br/>
	</xsl:template>

Thanks

On 12/9/06, Jay Bryant <> wrote:
> <?lb?> appears to be the standard.
>
> You can turn it into a line break in your customization layer by writing a
> template as follows:
>
> <xsl:template match="processing-instruction(lb)">
>   <fo:block/>
> </xsl:template>
>
> HTH
>
> Jay Bryant
> Bryant Communication Services
>
> ----- Original Message -----
> From: "Chris Chiasson" <>
> To: "DocBook Apps Mailing List" <>
> Sent: Saturday, December 09, 2006 6:06 PM
> Subject: [docbook-apps] name of line break processing instruction
>
>
> > Hi,
> >
> > I feel stupid for even asking, but a lot of archive searching still
> > hasn't given me the answer:
> >
> > What is the (or a) standard name for the DocBook line break processing
> > instruction? I've seen <?lb?> and some others. Is there support for
> > the PI already in the stylesheets? If not, what do I need to add to my
> > customization layer to enable support in fo, html, and xhtml. My line
> > breaks will probably occur in table entry cells.
> >
> > Thank you,
> >
> > --
> > http://chris.chiasson.name/
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: 
> > For additional commands, e-mail: 
> >
>
>
>


-- 
http://chris.chiasson.name/
Next in thread → Next in month →