Convert between different line ending formats (LF, CRLF, CR)
Line endings are special characters that mark the end of a line in text files. Different operating systems use different line endings: Unix/Linux/macOS use LF (\n), Windows uses CRLF (\r\n), and old Mac OS uses CR (\r). Mixing these can cause issues in version control and file processing.
Issues commonly occur when collaborating on projects across different operating systems, transferring files between systems, or when using tools that expect specific line endings. Version control systems like Git may show warnings about mixed line endings.
The tool first normalizes all line endings to a common format (\n), then converts them to your selected target format. This ensures consistent output regardless of the input mixture of line endings.
Yes, the "Show Invisible" button reveals line endings as visible text markers ([CRLF], [LF], [CR]). The stats panel also shows counts of each line ending type in your input text.