-
Notifications
You must be signed in to change notification settings - Fork 873

Description
It is not clear from the specification whether control characters (U+0000 .. U+001F and U+007F) are allowed in comments.
The section Comment only states that "A hash symbol marks the rest of the line as a comment.".
This implies that any non-newline characters are allowed after the hash symbol.
Discussion about control characters only appears in the section String, which should have no implication on comments.
The ABNF definition forbids control characters (except tab) in comments, but the ABNF is not authoritative.
I think the section Comment should explicitly state which characters are allowed in comments.
Note that it would be unlogical to allow e.g. form-feed inside comments, because form-feed is traditionally a stronger separator than newline.