Dan York wrote:
>
> I sent the version I used off to Jirka this morning, but thought I
> would pass along the info because I know a number of people mentioned
> having difficulties along these lines.
Fixed in CVS.
> P.S. The other solution, of course, is simply to make sure that all
> titles are on one line.
You should always have in mind that XML (and thus XML version of
DocBook) is much more sensitive to spaces and newlines than most typical
SGML appliacations. For example:
<programlisting>
$foo = bar();
echo foo;
</programlisting>
will add aditional new lines to your output. You probably will not
recognize it in HTML output, because HTML browsers are very relaxed in
new-line handling. But if you try to get printed output using Jade or
XSL FO you will see aditional lines. The safe way to write this is:
<programlisting>$foo = bar();
echo foo;</programlisting>
Which looks more ugly than first one, unfortunately.
Jirka
-----------------------------------------------------------------
Jirka Kosek
e-mail: [EMAIL PROTECTED]
http://www.kosek.cz
------------------------------------------------------------------
To unsubscribe from this elist send a message with the single word
"unsubscribe" in the body to: [EMAIL PROTECTED]