Changes between Initial Version and Version 1 of Ticket #16833, comment 14


Ignore:
Timestamp:
Feb 6, 2017, 3:37:43 PM (7 years ago)
Author:
Marek Lewandowski
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #16833, comment 14

    initial v1  
    3333What we could do here is to bring a fix for **lists only**, so that:
    3434
    35 {{{<ul>
     35{{{
     36<ul>
    3637        <li>1</li>
    3738        <p>2</p>
    3839        <li>3</li>
    39 </ul>}}}
     40</ul>
     41}}}
    4042
    4143Gets transformed into:
    4244
    43 {{{<ul>
     45{{{
     46<ul>
    4447        <li>1</li>
    4548        <li><p>2</p></li>
    4649        <li>3</li>
    47 </ul>}}}
     50</ul>
     51}}}
    4852
    4953Alternatively we could restrict the change only to **remove empty paragraphs** like that. So that:
    5054
    51 {{{<ul>
     55{{{
     56<ul>
    5257        <li>1</li>
    5358        <p></p>
    5459        <li>3</li>
    55 </ul>}}}
     60</ul>
     61}}}
    5662
    5763Gets transformed into:
    5864
    59 {{{<ul>
     65{{{
     66<ul>
    6067        <li>1</li>
    6168        <li>3</li>
    62 </ul>}}}
     69</ul>
     70}}}
    6371
    6472But no paragraph is moved around.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy