On Mon, 8 Sep 2003, Andreas L. Delmelle wrote: > From: Andreas L. Delmelle [mailto:[EMAIL PROTECTED] > > > From: Robert P. J. Day [mailto:[EMAIL PROTECTED] > > > > > > it seems that FOP is breaking a line in a rather unusual place. i'm > > using docbook, and i have a <variablelist>, where a single entry has > > two "terms": /bin and /usr/bin > > Not sure what hyphenation would apply in the case of pathnames... > > I guess you would have to take into account, for instance, that pathname not > referring to a unix-path... How would this need to be broken if that second > slash were not the start of the second entry...? > > Maybe you'd be helped by inserting an explicit newline to separate the two > values here...? ( That way, at least there's no doubt as to where the line > *should* be broken )
that's not how they're specified in docbook. the actual docbook XML to refer to a multi-term varlistentry is <varlistentry> <term>/bin</term> <term>/usr/bin</term> and so on. you're not even specifying the comma, just listing the terms. the .fo stuff i posted before is what's *generated* by, in my case, xsltproc. so there's no way for me to insert *anything* explicitly. once again, this falls to FOP for breaking the string where it did. rday --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
