I have a set of files that uses only `\r` to break lines at the header section. The current regex used for splitting the lines (`\r?\n`) doesn't work for such sections. Switching to `\r|\n|\r\n` does the job. I'll send a PR later on.