Closed (fixed)
Project:
Drupal core
Version:
6.1
Component:
base system
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
21 Mar 2008 at 19:54 UTC
Updated:
30 Jun 2009 at 10:43 UTC
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
Comment #1
ainigma32 commentedMaybe you can modify this module http://drupal.org/project/smartlinebreakconverter to fit your needs (and D6)
Shouldn't be too much work.
- Arie
Comment #3
kenorb commentedCould be related: #506112: wrong line wrapping on drupal_wrap_mail() in mail.inc