luaML.love/0032-rows

6 lines
129 B
Plaintext
Raw Permalink Normal View History

2023-06-21 00:34:03 +00:00
rows = function(margin, data)
-- helper for creating a 'rows' node
return {type='rows', margin=margin,
data=data or {}
}
end