Module:Module introspection: Difference between revisions

Ganaram inukshuk (talk | contribs)
mNo edit summary
Ganaram inukshuk (talk | contribs)
No edit summary
Line 200: Line 200:
funcs_text = "''dependency not used''"
funcs_text = "''dependency not used''"
else
else
funcs_text = table.concat(info.funcs, "<br />")
local func_lines = {}
for _, func in ipairs(info.funcs) do
table.insert(string.format("<code>%s</code>", func))
end
funcs_text = table.concat(func_lines, "<br />")
end
end