]> gitweb.factorcode.org Git - factor.git/blob - basis/toml/toml-docs.factor
Support Link Time Optimization (off by default)
[factor.git] / basis / toml / toml-docs.factor
1 USING: help.markup help.syntax kernel strings ;
2 IN: toml
3
4 HELP: toml>
5 { $values { "string" string } { "assoc" object } }
6 { $description "Decodes a configuration from the TOML format, represented as a " { $link string } "." } ;
7
8 ARTICLE: "toml" "Tom's Obvious Markup Language (TOML)"
9 "Tom's Obvious Markup Language (TOML) is described further in "
10 { $url "https://en.wikipedia.org/wiki/TOML" } "."
11 $nl
12 "Decoding support for the TOML protocol:"
13 { $subsections
14     toml>
15 } ;
16
17 ABOUT: "toml"