Make WordPress Core

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: yskin's profile yskin Owned by: rob1n's profile rob1n
Milestone: Priority: low
Severity: normal Version: 2.1.1
Component: TinyMCE Keywords:
Focuses: Cc:

Description (last modified by rob1n)

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)

#1 @foolswisdom
18 years ago

  • Milestone changed from 2.2 to 2.3

#2 @rob1n
18 years ago

  • Description modified (diff)

#3 @rob1n
18 years ago

  • Owner changed from anonymous to rob1n

Does this really matter? It's all aesthetics, and renders the same either way in the browser.

#4 @rob1n
18 years ago

  • Milestone 2.3 deleted
  • Resolution set to wontfix
  • Status changed from new to closed

Purely cosmetic, and should be raised upstream.

Note: See TracTickets for help on using tickets.