On 2008-07-22 , at 20:10:40, Henrik Maier wrote:

For example the text "...Recompiling SuperBoost C++ Library with
Visual Studio 2005..."

breaks into two lines like:

...Recompiling SuperBoost C
++ Library with Visual Studio 2005...

This seems to work well when producing PDF or RTF output:

   <!ENTITY zwj       "&#x200D;">       <!-- Zero Width Joiner -->
   <!ENTITY cplusplus "C&zwj;+&zwj;+">

...Recompiling SuperBoost &cplusplus; Library with Visual Studio 2005...

But if you are producing HTML output, you will later need to remove the Zero Width Joiners, perhaps like this:

   cat yourfile.html | sed 's/‍ZWJ//g' > yourfile.html

where "ZWJ" is replaced with the actual Zero Width Joiner character.

HTH.
________________________________________________________________________

Bill Greene
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to