toml-lang / toml

Tom's Obvious, Minimal Language

Home Page:https://toml.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Clarify which control characters are allowed in comments

autumnull opened this issue · comments

Currently the spec says this:

Control characters other than tab (U+0000 to U+0008, U+000A to U+001F, U+007F) are not permitted in comments.

However there are more control codes than just those listed in parentheses - namely the ones listed above cover the C0 control code range, but there are also the C1 control codes (U+0080 to U+009F), which are valid unicode. It is unclear from the specification whether the C1 codes are allowed to be present in comments or not.

There's an open PR/discussion for this: #924

I think this can be closed now that #924 is merged?

yes