├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── readme.md ├── sources ├── TOML.Parser.pas ├── TOML.Scanner.pas ├── TOML.Support.pas ├── TOML.Writer.pas └── TOML.pas └── tests └── Tests.dpr /.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable any line endings auto conversion. 2 | * -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyscripter/toml-delphi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyscripter/toml-delphi/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyscripter/toml-delphi/HEAD/LICENSE -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyscripter/toml-delphi/HEAD/readme.md -------------------------------------------------------------------------------- /sources/TOML.Parser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyscripter/toml-delphi/HEAD/sources/TOML.Parser.pas -------------------------------------------------------------------------------- /sources/TOML.Scanner.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyscripter/toml-delphi/HEAD/sources/TOML.Scanner.pas -------------------------------------------------------------------------------- /sources/TOML.Support.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyscripter/toml-delphi/HEAD/sources/TOML.Support.pas -------------------------------------------------------------------------------- /sources/TOML.Writer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyscripter/toml-delphi/HEAD/sources/TOML.Writer.pas -------------------------------------------------------------------------------- /sources/TOML.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyscripter/toml-delphi/HEAD/sources/TOML.pas -------------------------------------------------------------------------------- /tests/Tests.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyscripter/toml-delphi/HEAD/tests/Tests.dpr --------------------------------------------------------------------------------