Revision 94303 of "Module:Count" on foundationwiki

local p = {}

function p.staff( frame )
    title = mw.title.new('Template:Staff and contractors')
    page_text = title:getContent()
    local _, heads = string.gsub(page_text, '| head', '')
    local _, members = string.gsub(page_text, '{{staff member', '')
    -- Subtract one for Rory :-)
    return heads + members - 3
end

return p