Prepare FR module for v8

This commit is contained in:
2024-09-05 17:26:05 +02:00
parent c0e42f7f59
commit a01fec2367
36 changed files with 308 additions and 98 deletions

View File

@ -29,8 +29,25 @@ table.sort(todisplay, function (a, b)
return a.tag < b.tag
end
)
for _, tagDef in pairs(todisplay) do
print('"'.. tagDef.tag ..'":"'.. tagDef.value..'",')
if type(tagDef.value) == "table" then
print('"'.. tagDef.tag ..'":{')
for k, v in pairs(tagDef.value) do
if type(v) == "table" then
print('"'.. k ..'":{')
for kk, vv in pairs(v) do
print('"'.. kk ..'":"'.. vv..'",')
end
print('},')
else
print('"'.. k ..'":"'.. v..'",')
end
end
print('},')
else
print('"'.. tagDef.tag ..'":"'.. tagDef.value..'",')
end
end