Jump to content

Module:Taxonbar/exists

Kubijyanye na Wikipedia
Revision as of 14:42, 10 Mata 2025 by 2601:18e:d104:4ab0:cd5a:583f:d66e:f1a2 (ibiganiro byanjye) (Created page with "local p = {} function p.check( frame ) local pagename = mw.title.getCurrentTitle().text local content = mw.title.new(pagename):getContent() or '' local getRegex = require('Module:Template redirect regex').main local tregex = getRegex('Taxonbar') for _, v in pairs (tregex) do local found = string.match(content, v) if found then local v_cmt_before = '%<%!%-%-%s*'..v local v_cmt_after = v..'[^{}]*}}%s*-->' local found_cmt = mw.ustring.match(content, v_cm...")
(ubudasa) ← Ivugururwa rya kera | Ivugururwa riheruka (ubudasa) | Ivugururwa rishya → (ubudasa)

Documentation for this module may be created at Module:Taxonbar/exists/doc

local p = {}

function p.check( frame )
	local pagename = mw.title.getCurrentTitle().text
	local content = mw.title.new(pagename):getContent() or ''
	local getRegex = require('Module:Template redirect regex').main
	local tregex = getRegex('Taxonbar')
	for _, v in pairs (tregex) do
		local found = string.match(content, v)
		if found then
			local v_cmt_before = '%<%!%-%-%s*'..v
			local v_cmt_after  = v..'[^{}]*}}%s*-->'
			local found_cmt = mw.ustring.match(content, v_cmt_before) or mw.ustring.match(content, v_cmt_after)
			if found_cmt then return 'commented'
			else return true end
		end
	end
	return false
end

return p