Module:Infobox chord: Difference between revisions

ArrowHead294 (talk | contribs)
mNo edit summary
Undo revision 184878 by ArrowHead294 (talk). The debug mode is used in several places on the wiki where categories should be disabled
Tag: Undo
Line 254: Line 254:
end
end


local result = infobox.build("<u>Chord information</u>", infobox_data) .. cats
local result = infobox.build("<u>Chord information</u>", infobox_data)
return frame:preprocess(debug_mode == true and "<pre>" .. result .. "</pre>" or result)
if not debug_mode then
result = result .. cats
end
return frame:preprocess(s)
end
end


return p
return p