summaryrefslogtreecommitdiff
path: root/marigold.lua
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-05-22 12:49:14 -0500
committersanine <sanine.not@pm.me>2022-05-22 12:49:14 -0500
commit7e61cd41cca9a8915b346a79d658bab4829d8ff1 (patch)
treeef9185c8738e21f9fe54bf91c2f504b9e80cefa9 /marigold.lua
parentfc4a406371fdf130d6f0db02d3a2e09112686b9f (diff)
allow adding children via marigold.h
Diffstat (limited to 'marigold.lua')
-rw-r--r--marigold.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/marigold.lua b/marigold.lua
index c95ecb5..3ed0f59 100644
--- a/marigold.lua
+++ b/marigold.lua
@@ -63,6 +63,11 @@ marigold.h = function(tag_type, content, tbl)
tag.content = content
tag.attributes = {}
tag.children = {}
+ if tbl then
+ for _, child in ipairs(tbl) do
+ table.insert(tag.children, child)
+ end
+ end
return tag
end