Line wrapping

When I convert Frame to html there is often a long metatag (file title) within the head. During export it creates a hard break between the metatag name and the content. Example file exerpt:

8
9 <meta name="Document Title"
10 content="Assess the Situation to Determine Design Requirements ">
11

It appears to be a wrapping issue and is causing some trouble with our web developer. Is there a way to suppress this?

Thanks..bill

Line breaks in tags

The best solution is to fix the bug in your Web developer's tool. It is perfectly legal HTML, and according to the HTML specs a return within a tag should be treated exactly the same as a space. So this can bite you in many, many places.

The only way to suppress a return there is to set [HTMLOptions]NoWrap=Yes, as described in the User's Guide, par. 13.6.5, "Suppressing line breaks in HTML and XML output". But that will suppress all returns within paragraphs too, which can result in browser failure if you have long paragraphs, and make the files uneditable since many text editors have fairly low line-length limits (under 1K).

It's much better to fix the tool that is noncompliant with the HTML specs.

HTH!