xml2lua icon indicating copy to clipboard operation
xml2lua copied to clipboard

XML Parser written entirely in Lua that works for Lua 5.1+. Convert XML to and from Lua Tables 🌖💱

Results 13 xml2lua issues
Sort by recently updated
recently updated
newest added

Parsing element ` ` becomes `NumberPlateText = {}` but expected `NumberPlateText = " "`

Now we need to ``require('xmlhandler.tree')`` and call ``xml2lua.parser(handler):parse(xml)``, now we need to use ``handler.root`` to get the table I found the helper function at https://github.com/manoelcampos/xml2lua/issues/92#issuecomment-1843106426, now we can parse xml...

Hi, thanks to your work. When I have such XML payload: ```xml settings background #262626 foreground #bcbcbc invisibles #585858 lineHighlight #262626 lineDiffAdded #87afff lineDiffModified #dfdfdf lineDiffDeleted #ffdf87 ``` I wonder...