"Module:Taxonbar/exists" के अवतरणों में अंतर

मुक्त ज्ञानकोश विकिपीडिया से
नेविगेशन पर जाएँ खोज पर जाएँ
https://hiwiki.iiit.ac.in/index.php/>Tom.Reding
छो (Undid revision 925806814 by Tom.Reding (talk) Needs sandboxing)
 
छो (१ अवतरण आयात किया गया)
 
(कोई अंतर नहीं)

०५:३६, २० जून २०२२ के समय का अवतरण

"इस मॉड्यूल हेतु प्रलेख 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]axon?[ _-]?[bB]ar') or --5 redirects as of 2019/9
				  string.match(content, '%{%{ *[Tt]axonIds')
	if found then return true end
	return false
end

return p