Module:Taxonbar/exists

in Wikipedia, die vrye ensiklopedie

Dokumentasie vir hierdie module kan geskep word by: Module:Taxonbar/exists/doc

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]aksonbalk')
	if found then return true end
	return false
end

return p