Module:Sandbox/User:Alsang/NodeDescriptionChecker: Difference between revisions
Module:Sandbox/User:Alsang/NodeDescriptionChecker (edit)
Revision as of 11:48, 2 December 2024
, 2 December 2024table to identify which recipes changed formatting
(add function to check if pages and recipes exist) |
(table to identify which recipes changed formatting) |
||
Line 290:
local query = mw.smw.ask('[[Name::' .. name .. ']][[Recipe JSON::~*]]|?#-')
local result = tostring(query)
if result=='table' then
cell:wikitext('
elseif result=='nil' then
cell:wikitext(' needs recipe')
else
cell:wikitext(result)
end
end
cell:wikitext('<br>')
|