Module:InfoboxImage: Difference between revisions

From Roses, Tulips, & Liberty
Content added Content deleted
(Add some from CAT:WIP)
(add a sanity check to help debug an intermittent error)
Line 92: Line 92:
-- change underscores to spaces
-- change underscores to spaces
image = mw.ustring.gsub(image, "_", " ");
image = mw.ustring.gsub(image, "_", " ");
assert(image ~= nil, 'mw.ustring.gsub must not return nil')
-- if image starts with [[ then remove that and anything after |
-- if image starts with [[ then remove that and anything after |
if mw.ustring.sub(image,1,2) == "[[" then
if mw.ustring.sub(image,1,2) == "[[" then