Modul:Taxonbar/exists
Appearance
Seba na module şıma şenê yû pela dokumani vırazê Modul:Taxonbar/exists/dok
local p = {}
function p.check( frame )
local pagename = mw.title.getCurrentTitle().baseText
local content = mw.title.new(pagename):getContent() or ''
local found = string.match(content, '%{%{ *[Tt]axon?[ -]?[bB]ar') or
string.match(content, '%{%{ *[Tt]axonIds')
if found then return true end
return false
end
return p