This content has been marked as final.
Show 1 reply
-
1. Re: Save file formating
Peter Flynn (Adobe) Sep 19, 2014 12:10 PM (in response to CodeJoker)It sounds like what you're seeing is a problem with line endings. The way line endings (newlines) are stored in a text file varies by OS. Notepad, and a few other simple text editors, are only able to deal with the way Windows stores line endings. Most editors, including Edge Code, can correctly understand line endings from any platform (Windows style or Mac/Linux style). That explains the display difference.
If you want to convert a file from Mac/Linux line endings to Windows line endings, there are various utility programs available that will let you do that, such as unix2dos. Or you can write a little script file to make your own utility.
- Peter


