Opened 19 years ago
Closed 19 years ago
#3850 closed defect (bug) (wontfix)
HTML editor should process dl tag like ol and ul
| Reported by: | yskin | Owned by: | rob1n |
|---|---|---|---|
| Priority: | low | Milestone: | |
| Component: | TinyMCE | Version: | 2.1.1 |
| Severity: | normal | Keywords: | |
| Cc: | Focuses: |
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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Does this really matter? It's all aesthetics, and renders the same either way in the browser.