Module:Template redirect regex

local p = {}

--returns a table of regular expressions, sorted by descending popularity, for a parent template and all redirects to it as of a certain date, or nil
--regex for the 1st pipe and surrounding whitespace are purposefully omitted to give the calling modules more flexibility
function p.main( template )

	--expand the following table as-needed, following the same format
	local tCanonical_templates = {
		['Category redirect'] = { 
			--the following 11 pages (6 condensed) redirect to [[Template:Category redirect]], as of 2022/9:
			'{{%s*[Cc]ate?g?o?r?y?[ _]*[rR]edirect',	--parent+505+312+243+1 transclusions
			'{{%s*[Cc]atr',								--21
			'{{%s*[Cc]at[ _]*[rR]edir',					--5+3
			'{{%s*[Cc]at[ _]*[rR]ed',					--3+2
			'{{%s*[Cc]at[ _]*[mM]ove',					--1
			'{{%s*[Cc]ategory[ _]*[mM]ove',				--0
		},
		
		['Taxonbar'] = { 
			--the following 6 pages (3 condensed) redirect to [[Template:Taxonbar]], as of 2023/8:
			'{{%s*[Tt]axon?[ _-]?[bB]ar',				--parent+50+11+2+2 transclusions
			'{{%s*[Tt]axon[Ii]ds',						--45
			'{{%s*[Tt]axon[ _]*[iI]dentifiers',			--1
			--detect direct calls to [[Module:Taxonbar]]
			'{{ *#invoke *: *[Tt]axonbar',
		},
		
		['Short description'] = { 
			--the following 4 pages (2 condensed) redirect to [[Template:Short description]], as of 2024/8:
			'{{%s*[Ss]hort[ _]?[dD]escription',			--parent+125+6 transclusions
			'{{%s*[Ss]hort[ _]?[d]esc',					--10+8
		},
	}
	
	return tCanonical_templates[template] or nil
end

return p

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.