Module:Middle East conflicts map marks/display
Appearance
![]() | MODULE NO LONGER IN USE. USE ONLY FOR HISTORY OF REVISIONS. DO NOT EDIT THIS MODULE ANYMORE! See item 1 of Module talk:Iraqi insurgency detailed map#Big changes to the structure of the template/module & item 2 of Talk:Control of cities during the Syrian civil war#Big changes to the structure of the template/module. |
Lua error in package.lua at line 80: module 'Module:Middle East insurgencies map marks' not found.
Usage
{{#invoke:Middle East conflicts map marks|function_name}}
local p = {}
local m = mw.loadData('Module:Middle East insurgencies map marks')
function p.main(frame)
local out = {}
for k,v in pairs(m) do
out[#out + 1] = string.format('\n* %s: [[File:%s|16x16px]]', k, v)
end
table.sort(out)
return frame:expandTemplate{title='Div col', args={colwidth='250px'}} .. table.concat(out) .. frame:expandTemplate{title='Div col end'}
end
return p