TOML Config Files#
Virtue supports the reading and writing of TOML config files which are easy to use and human-readable.
Currently Virtue supports basic TOML files including key-value pairs and tables. But it doesn’t currently support the whole specification and is missong some features such as in-line tables.
Read a “.toml” file into a SKILL Table using the following function:
TOML read function signature#
1Toml->ReadFile(filePath "t")
Write a “.toml” file from a SKILL table or association list input:
TOML write function signature#
1Toml->WriteFile(filePath input "tg")