[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: What would be a good representation of XML tree as Lua tables?
- From: steve donovan <steve.j.donovan@...>
- Date: Mon, 22 Aug 2016 19:29:22 +0200
On Mon, Aug 22, 2016 at 6:59 PM, Roberto Ierusalimschy
<roberto@inf.puc-rio.br> wrote:
> 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').
A modification of that self-same little parser lives in penlight:
> pretty.dump(xml.basic_parse("<hello a='1'>bonzo</hello>"))
{
"bonzo",
attr = {
a = "1"
},
tag = "hello"
}
This is the so-called LOM (Lua Object Model) format
(http://matthewwild.co.uk/projects/luaexpat/lom.html)
Incidentally, pl.xml was based on Prosody's stanza.lua
The nice thing about these styles of representation, of course, is
that looping from 1 to #t gives you the children. (Note: I still
believe in #)