We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
\r
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.
\r?\n
Switching to \r|\n|\r\n does the job.
\r|\n|\r\n
I'll send a PR later on.
The text was updated successfully, but these errors were encountered:
Fix chilts#11
ed6528c
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: