Hi there,
in both versions I set "config.forcePasteAsPlainText = true;" in the config.js. My Example is a numbered list (formatted) in MS Word / OpenOffice like
- first item
- second item
- third item
When I paste this text in CKEditor 3 I get
1. first item
2. second item3. third item
html source code:
<p>1. first item<br />
2. second item<br />
3. third item</p>
The numbered list was "converted" to "hard coded" numbers, thats ok and fine for my needs (it works also for a a/b/c list)
When I copy/paste the same text in CKEditor 4 I loose the numbers and get only
first item
second item
third item
If the "forcePasteAsPlainText" is set to false I get a formatted nubmered list (<li> elements in html sourced code) in CKEditor but thats not the behaviour I need.
Is there any possibility / configuration parameter to get the old behavour back in CKEditor 4?

What CKE version are you
What CKE version are you using? And do you get the same behavior in all browsers?
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
I tested both CKE Versions
I tested both CKE Versions with Internet Explorer 11 and newest Firefox (27.0.1) but I get the same behaviour with IE10 and older Firefox versions (ESR 17/24).
CKE 3.6.3 (revision 7474)
CKE 4.3.2
I set config.forcePasteAsPlainText = true in both versions.
I attached a screenshot with the word text, the pasted text in CKE and html source code of pasted text.
Attachments:
Ok, after a deeper
Ok, after a deeper investigation, it's an intended behavior. One might argue the opposite: that CKEditor should remove the numbers when forcePasteAsPlainText is on since you're pasting the text part of the copied content and the list part is a Word formatting, like text highlighting or something, which also gets stripped. None of CKEditor's logic is set in stone, btw. You can always counter argue this. The CKEditor dev site is here. You can always add a new feature request and make your case.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Thank you for your fast reply
Thank you for your fast reply.
I will try with a new feature request.