From: SourceForge.net <no...@so...> - 2004-03-16 00:43:59
|
Bugs item #917012, was opened at 2004-03-15 16:43 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=917012&group_id=13153 Category: Tidy functionality Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Spaces are moved from content to between tags Initial Comment: Tag content (such as text in a font tag) that has space at either end of the content has the space stripped and placed between the font tags. For example: <html> <body> <p> <font style="font-size: 36pt">big </font><font style="color: #red; font-size: 36pt">coloured</font><font style="font-size: 36pt"> text</font> </p> </body> </html> will get converted to something like this: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <body> <p><span style="font-size: 36pt">big</span> <span style= "color: #red; font-size: 36pt">coloured</span> <span style= "font-size: 36pt">text</span></p> </body> </html> Notice that the space after big appears to have been moved to between the span tags. This results in spaces at the default point size being used between the words. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=917012&group_id=13153 |