Changes between Initial Version and Version 1 of Ticket #16833, comment 14
- Timestamp:
- Feb 6, 2017, 3:37:43 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16833, comment 14
initial v1 33 33 What we could do here is to bring a fix for **lists only**, so that: 34 34 35 {{{<ul> 35 {{{ 36 <ul> 36 37 <li>1</li> 37 38 <p>2</p> 38 39 <li>3</li> 39 </ul>}}} 40 </ul> 41 }}} 40 42 41 43 Gets transformed into: 42 44 43 {{{<ul> 45 {{{ 46 <ul> 44 47 <li>1</li> 45 48 <li><p>2</p></li> 46 49 <li>3</li> 47 </ul>}}} 50 </ul> 51 }}} 48 52 49 53 Alternatively we could restrict the change only to **remove empty paragraphs** like that. So that: 50 54 51 {{{<ul> 55 {{{ 56 <ul> 52 57 <li>1</li> 53 58 <p></p> 54 59 <li>3</li> 55 </ul>}}} 60 </ul> 61 }}} 56 62 57 63 Gets transformed into: 58 64 59 {{{<ul> 65 {{{ 66 <ul> 60 67 <li>1</li> 61 68 <li>3</li> 62 </ul>}}} 69 </ul> 70 }}} 63 71 64 72 But no paragraph is moved around.