We're all faced with situations of copying from one formatting editor to another formatting editor. It's usually a pain to make sure that the formatting in the previous editor is not applied in the new one because we may only be interested in the content and not the formatting.
Let's take an example. Say you have a piece of code available in an eclipse editor. For the readers from non-programming background, it's one of the popular editors used usually for Java. You are creating a document using MS Word for your fellow team members that refers to this piece of code. Let's assume you are following a specific style for the code blocks inserted in your document. But when you copy paste the code from eclipse, the formatting is carried forward and is used in the Word document. This is a useful feature but in some cases like the one described above, it causes problems.
It becomes cumbersome to manually remove the formatting and bring it to the format you desire. In such situations, a non formatting text editor comes in handy. Notepad and Notepad++ on Windows can be utilized for this purpose. Notepad++ is not entirely a non formatting editor but can be used for temporarily pasting the text. So the sequence would be as follows
source -> non-formatting editor ->destination
and et voila you're done. Now you can go ahead and apply the required formatting :)
Let's take an example. Say you have a piece of code available in an eclipse editor. For the readers from non-programming background, it's one of the popular editors used usually for Java. You are creating a document using MS Word for your fellow team members that refers to this piece of code. Let's assume you are following a specific style for the code blocks inserted in your document. But when you copy paste the code from eclipse, the formatting is carried forward and is used in the Word document. This is a useful feature but in some cases like the one described above, it causes problems.
It becomes cumbersome to manually remove the formatting and bring it to the format you desire. In such situations, a non formatting text editor comes in handy. Notepad and Notepad++ on Windows can be utilized for this purpose. Notepad++ is not entirely a non formatting editor but can be used for temporarily pasting the text. So the sequence would be as follows
source -> non-formatting editor ->destination
and et voila you're done. Now you can go ahead and apply the required formatting :)
