You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Strip CR from parsed document
Remove all carriage return characters from parsed document to matanin compatibility with editors working under Windows operating system.
For Windows CRLF is default line ending, and simplest way to handle that is to simply remove all CR characters by using regex. If document has only LF line endings then `convert_crlf_to_lf` will simply return original document, because nothing is going to be replaced.
* Add test for CRLF support
0 commit comments