[wp-trac] [WordPress Trac] #3850: HTML editor should process dl tag like ol and ul

WordPress Trac wp-trac at lists.automattic.com
Fri Feb 23 08:18:29 GMT 2007


#3850: HTML editor should process dl tag like ol and ul
---------------------+------------------------------------------------------
 Reporter:  yskin    |       Owner:  anonymous
     Type:  defect   |      Status:  new      
 Priority:  low      |   Milestone:  2.2      
Component:  TinyMCE  |     Version:  2.1.1    
 Severity:  normal   |    Keywords:           
---------------------+------------------------------------------------------
 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 HTML editor can not replace “<dl><dt>1</dt><dd>2</dd></dl>” to
 {{{
 <dl>
         <dt>1</dt>
         <dd>2</dd>
 </dl>
 }}}

-- 
Ticket URL: <http://trac.wordpress.org/ticket/3850>
WordPress Trac <http://trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list