Opened 18 years ago
Closed 18 years ago
#3850 closed defect (bug) (wontfix)
HTML editor should process dl tag like ol and ul
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | Priority: | low | |
Severity: | normal | Version: | 2.1.1 |
Component: | TinyMCE | Keywords: | |
Focuses: | Cc: |
Description (last modified by )
click Code tab, enter
<dl><dt>1</dt><dd>2</dd></dl>
Click Visual tab and than click Code tab, get result:
<dl> <dt>1</dt> <dd>2</dd> </dl>
Enter “<ul><li>1</li><li>2</li></ul>”, the result is
<ul> <li>1</li> <li>2</li> </ul>
Why can't the text editor replace “<dl><dt>1</dt><dd>2</dd></dl>” to
<dl> <dt>1</dt> <dd>2</dd> </dl>
Change History (4)
Note: See
TracTickets for help on using
tickets.
Does this really matter? It's all aesthetics, and renders the same either way in the browser.