Content deleted Content added
No edit summary |
sync from main |
||
Line 179:
end
end
args = frame.args; -- now get frame arguments (
for k, v in pairs (args) do -- copy args into citeq_args
Line 187:
elseif 'wdlinks' == k then -- don't copy wdlinks
wdl = v; -- save its value
else
citeq_args[k] = v -- but copy everything else
end
Line 193:
if is_set (qid) then
get_name_list ('author', citeq_args, qid, wdl); -- modify citeq_args table with authors from wikidata
end
get_name_list ('editor', citeq_args, qid, wdl); -- modify citeq_args table with editors from wikidata
end
|