Is there a way to disable the paragraph tag < p > and just use < br > in Line break converter?

When there's some HTML code that goes to the next line or has line breaks, Drupal will insert paragraph tags, and sometimes that causes formating problems.

For example, original code:

<tr>
<td width="150">AAA</td>
<td valign="top">

ABCDEF</td></tr>

<tr><td>

after being submitted becomes:

<tr>
<td width="150">AAA</td>
<td valign="top">
<p>ABCDEF</td>
</tr>
</p>
<p>
<tr>
<td>

Comments

ainigma32’s picture

Status: Active » Fixed

Maybe you can modify this module http://drupal.org/project/smartlinebreakconverter to fit your needs (and D6)
Shouldn't be too much work.

- Arie

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

kenorb’s picture