From 7188614f0e2103f2cfc87dd0cb268f82fafd8c22 Mon Sep 17 00:00:00 2001 From: sanine Date: Sun, 22 May 2022 12:57:34 -0500 Subject: allow setting attributes --- marigold.lua | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'marigold.lua') diff --git a/marigold.lua b/marigold.lua index 16aa054..4f04052 100644 --- a/marigold.lua +++ b/marigold.lua @@ -68,7 +68,15 @@ marigold.h = function(tag_type, content, tbl) tag.content = content tag.attributes = {} tag.children = {} + if tbl then + -- add attributes + for k, v in pairs(tbl) do + if type(k) == 'string' then + tag.attributes[k] = v + end + end + -- add children for _, child in ipairs(tbl) do table.insert(tag.children, child) end -- cgit v1.2.1