
TOML - Wikipedia
Tom's Obvious, Minimal Language (TOML, originally Tom's Own Markup Language [2]) is a file format for configuration files. [3] It is intended to be easy to read and write due to obvious semantics which aim to be "minimal", and it is designed to map unambiguously to a dictionary .
TOML: Tom's Obvious Minimal Language
TOML aims to be a minimal configuration file format that's easy to read due to obvious semantics. TOML is designed to map unambiguously to a hash table. TOML should be easy to parse into data structures in a wide variety of languages.
Learn TOML in Y Minutes
TOML stands for Tom's Obvious, Minimal Language. It is a data serialisation language designed to be a minimal configuration file format that's easy to read due to obvious semantics. It is an alternative to YAML and JSON.
TOML:Tom 的(语义)明显、(配置)最小化的语言
TOML 旨在成为一个语义明显且易于阅读的最小化配置文件格式。 TOML 被设计成可以无歧义地映射为哈希表。 TOML 应该能很容易地被解析成各种语言中的数据结构。 data = [ ["delta", "phi"], [3.14] ] temp_targets = { cpu = 79.5, case = 72.0 } TOML 旨在成为一个最小化配置文件格式,它: TOML 已经拥有大多数当今使用的最流行的编程语言的实现:C、C#、C++、Clojure、Dart、Elixir、Erlang、Go、Haskell、Java、JavaScript、Lua、Objective-C、Perl、PHP、Python …
toml/toml.md at main · toml-lang/toml - GitHub
TOML aims to be a minimal configuration file format that's easy to read due to obvious semantics. TOML is designed to map unambiguously to a hash table. TOML should be easy to parse into data structures in a wide variety of languages.
Understanding TOML: A Beginner’s Guide to a Minimal Yet
2025年1月29日 · TOML (Tom’s Obvious, Minimal Language) is a configuration file format built to be easy to read, understand, and use. It’s lightweight, intuitive, and designed...
The Developer's Guide To TOML - AnBowell
2023年9月5日 · Everything you need to know to get started with TOML - examples, config files, serialization and more. TOML (T om's O bvious M inimal L anguage) is a language designed to create simple, human readable configuration files. It's 2013 release makes it a relatively new language yet TOML has gained significant traction across software development.
TOML: A config file format for humans - Zhen Zhong's Blog
2024年12月16日 · TOML is a configuration file format designed with human-friendliness in mind. At its core, TOML is meant to be easy to read, easy to parse into data structures, and unambiguous mapping to a hash table.
How is TOML different than Windows INI files? - GitHub
2021年8月31日 · TOML is deliberately similar to INI files, so much so that a sufficiently simple TOML file would be indistinguishable from an INI file. The main difference is that INI is not a formal standard, so different implementations have different quirks, support different data types, etc. TOML is a standard.
TOML Tables Types Explained: A Clear and Complete Guide
2025年2月9日 · TOML (Tom’s Obvious, Minimal Language) is a simple configuration file format designed to be easy to read and write. It is widely used in various applications,...