Module:MediaWiki message helper/R: and RQ: templates
Appearance
- මෙම module සතුව උපදෙස් උප පිටුවක් නොපවතියි. Please නිර්මාණය කරන්න.
- ප්රයෝජනවත් සබැඳි: root page • root page’s subpages • සබැඳි • transclusions • testcases • sandbox
-- Gathered from all-titles file in 2019-11-01 dump:
-- rg '^10\t(RQ?:[^/]+/?\d*)$' --replace '$1' all-titles
local page = mw.title.new("User:Lee/lists/R and RQ templates")
local templates
if page then
templates = page:getContent()
local escape = require "Module:string utilities".pattern_escape
templates = templates:gsub("_", " "):match(
escape("<!-- begin list -->") .. "%s*"
.. "<pre>%s*(.-)%s*</pre>%s*" .. escape("<!-- end list -->"))
else
templates = ""
end
return templates