endlines
Endlines, or line endings, are characters or sequences that signal the end of a line of text. They originated from teletype machines and ASCII control characters, and in most modern systems are encoded as one or more characters. In Unicode, there are also dedicated line separator characters, but these are rarely used as simple end-of-line markers.
Common forms include LF (U+000A), CR (U+000D), and CRLF (U+000D followed by U+000A). Unix-like systems primarily
Impact: Applications reading and writing text must decide how to represent and translate endlines. In programming
Cross-platform issues: Different endlines cause diffs and patch issues in version control and can cause scripts
Summary: Endlines are a practical convention to mark line boundaries in text, with LF, CR, and CRLF