lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> In Prosody we have a library called util.stanza which deals with
> building and traversing XML trees.  They have the following basic structure:
> 
> { name = 'x', attr = { foo = 'bar' }, tags = { ... }, ... }

I like this format. It is quite similar to what my original
quick-and-dirty XML parser in Lua did (except that it used 'label'
instead of 'name', 'args' instead of 'attr', and does not have 'tags').

-- Roberto