Changes between Initial Version and Version 4 of Ticket #5154


Ignore:
Timestamp:
Feb 14, 2010, 3:10:54 PM (15 years ago)
Author:
Alfonso Martínez de Lizarrondo
Comment:

The problem is that in some part of your server, you are replacing new lines (\r\n) with <br> and that's what you send back to CKEditor next time.

Try to use that sample HTML with a plain textarea (just disable the CKEditor call) and you'll see that you are getting also the <br> without your "wouraround".

The methods to configure the output formatting are documented at http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Output_Formatting

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5154

    • Property Status changed from new to closed
    • Property Resolution changed from to invalid
    • Property Milestone changed from CKEditor 3.x to
  • Ticket #5154 – Description

    initial v4  
    22
    33Simple text:
     4{{{
    45<h1>text 1</h1>
    56<h1>text 2</h1>
    67<h1>text 3</h1>
     8}}}
    79
    810After switch out and back into source:
     11
     12{{{
    913<h1>
    1014        text 1</h1>
     
    1317<h1>
    1418        text 3</h1>
     19}}}
     20
    1521
    1622After saving and reloading the text, and switching to source view:
    1723
     24
     25{{{
    1826<h1>
    1927        <br />
     
    2937        <br />
    3038        text 3</h1>
     39}}}
     40
    3141
    3242Doing the same again, with absolutely zero changes by the user:
    3343
     44
     45{{{
    3446<h1>
    3547        <br />
     
    6173        <br />
    6274        text 3</h1>
     75}}}
     76
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy