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
I'm trying to read the 1.0 specification for the first time, but it's a bit hard to digest.
According to the excerpt below, can I use form feed as a line ending or not?
The following chars are considered line endings:
- A line feed `U+000A`
- A form feed `U+000C`
- A carriage return `U+000D`
The following line ending combinations are permitted:
- A single line feed
- A single carriage return
- A carriage return immediately followed by a line feed
The text was updated successfully, but these errors were encountered:
No, the form feed is the page break character. That means, when a document gets displayed on pages, it will forces whatever comes after it, to start on the next page.
However, this does not mean that the line (or paragraph for that matter) is considered ended/broken, even though it has to be displayed as such (due to the paged output).
I'm trying to read the 1.0 specification for the first time, but it's a bit hard to digest.
According to the excerpt below, can I use form feed as a line ending or not?
The text was updated successfully, but these errors were encountered: