Skip to content

oeshennix/toml-lua

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

toml-lua

a TOML 1.0.0 parser written in lua


How to use

require the module

toml=require("toml-lua");

convert TOML data

local TOMLData=toml.parse([=[
# This is a TOML document.

title = "TOML Example"

[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00 # First class dates

[database]
server = "192.168.1.1"
ports = [ 8000, 8001, 8002 ]
connection_max = 5000
enabled = true

[servers]

  # Indentation (tabs and/or spaces) is allowed but not required
  [servers.alpha]
  ip = "10.0.0.1"
  dc = "eqdc10"

  [servers.beta]
  ip = "10.0.0.2"
  dc = "eqdc10"

[clients]
data = [ ["gamma", "delta"], [1, 2] ]

# Line breaks are OK when inside arrays
hosts = [
  "alpha",
  "omega"
]
]=])
print(TOMLData)
local data=TOMLData:Lua()
print(data.servers.alpha.ip);

Bugs

allows redefinition of tables. stops and return at invalid TOML

About

A toml parser created in lua.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages