Module:pages: Difference between revisions

no edit summary
(Created page with "local export = {} local string_utilities_module = "Module:string utilities" local concat = table.concat local find = string.find local format = string.format local getmetatable = getmetatable local get_current_section -- Defined below. local get_pagetype -- Defined below. local gsub = string.gsub local insert = table.insert local is_internal_title -- Defined below. local is_title -- Defined below. local lower = string.lower local match = string.match local new_title =...")
 
No edit summary
Line 224: Line 224:
end
end
local ns = title.namespace
local ns = title.namespace
-- (main), Appendix, Thesaurus, Citations, Reconstruction.
-- (main), Contionary.
return (ns == 0 or ns == 100 or ns == 110 or ns == 114 or ns == 118) and
return (ns == 0 or ns == 120) and
title.contentModel == "wikitext"
title.contentModel == "wikitext"
end
end