summaryrefslogtreecommitdiff
path: root/marigold.lua
diff options
context:
space:
mode:
Diffstat (limited to 'marigold.lua')
-rw-r--r--marigold.lua15
1 files changed, 14 insertions, 1 deletions
diff --git a/marigold.lua b/marigold.lua
index 37cbdfb..ac0e061 100644
--- a/marigold.lua
+++ b/marigold.lua
@@ -87,6 +87,7 @@ end
marigold.html = function(tbl, indent_level)
indent_level = indent_level or 0
+ local indent = string.rep('\t', indent_level)
-- generate attribute strings
local attributes = {}
@@ -105,7 +106,19 @@ marigold.html = function(tbl, indent_level)
local open = string.format('<%s%s>', tbl.tag, a)
local close = string.format('</%s>', tbl.tag)
- return string.format('%s%s%s', open, tbl.content, close)
+ if #tbl.children == 0 then
+ return string.format('%s%s%s%s', indent, open, tbl.content, close)
+ end
+
+ local children = ''
+ for _, child in ipairs(tbl.children) do
+ children = children .. marigold.html(child, indent_level+1) .. '\n'
+ end
+
+ return string.format('%s%s%s\n%s%s%s',
+ indent, open, tbl.content,
+ children,
+ indent, close)
end