ผลต่างระหว่างรุ่นของ "มอดูล:InfoboxImage"

เนื้อหาที่ลบ เนื้อหาที่เพิ่ม
try update
sync from enwiki
บรรทัด 88:
"Project Trains no image.png",
"Image-request.png",
"Noimage.gif",
}
 
เส้น 162 ⟶ 163:
if mw.ustring.sub(image,1,2) == "[[" then
-- search for thumbnail images and add to tracking cat if found
local cat = "";
if mw.title.getCurrentTitle().namespace == 0 and (mw.ustring.find(image, "|%s*thumb%s*[|%]]") or mw.ustring.find(image, "|%s*thumbnail%s*[|%]]")) then
returncat image ..= "[[Category:Pages using infoboxes with thumbnail images]]";
elseif mw.title.getCurrentTitle().namespace == 0 then
else
returncat = "[[Category:Pages using deprecated image syntax]]";
end
return image .. cat;
elseif mw.ustring.sub(image,1,2) == "{{" and mw.ustring.sub(image,1,3) ~= "{{{" then
return image;
เส้น 172 ⟶ 175:
return image;
elseif mw.ustring.sub(image,1,5) == mw.ustring.char(127).."UNIQ" then
-- Found strip marker at begining, so pass don't process at all
return image;
elseif mw.ustring.sub(image,4,9) == "`UNIQ-" then
-- Found strip marker at begining, so pass don't process at all
return image;
เส้น 216 ⟶ 222:
if (tonumber(size) or 0) > 0 then
size = size .. "px";
elseend
-- add px to sizedefault if just a number
if (tonumber(sizedefault) or 0) > 0 then
sizedefault = sizedefault .. "px";
end