TOML v1.0.0 Specification Overview
masterTOML (Tom's Obvious, Minimal Language) is a minimal configuration file format designed to map unambiguously to a hash table.
Core Rules:
- Case-sensitivity: TOML is case-sensitive.
- Encoding: Files must be valid UTF-8 encoded Unicode documents.
- Whitespace: Whitespace consists of tabs (
0x09) or spaces (0x20). - Newlines: Newlines are LF (
0x0A) or CRLF (0x0D 0x0A). - Comments: A hash symbol (
#) marks the rest of the line as a comment, except when inside a string. Control characters (other than tab) are not permitted in comments.