Jump to content

Module:Taxonbar/exists

Frae Wikipedia, the free beuk o knawledge
Reveesion aes o 20:32, 8 Julie 2019 bi AmaryllisGardener (Collogue | contribs) (Cræftit page wi "local p = {} function p.check( frame ) local pagename = mw.title.getCurrentTitle().baseText local content = mw.title.new(pagename):getContent() or '' local found = string.m...")
(diff) ← Aulder reveision | see current reveision (diff) | Newer reveision → (diff)
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