lua-users home
lua-l archive

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


The luaxml documentation demonstrates how to create simple non-nested XML structures. How can I use luaxml to create nested entities, e.g.:

<john>
  <face>
    <eyes>brown</eyes>
    <hair>blond</hair>
  </face>
</john>

Thank you,
-- Chris