The wiki is currently a work in progress. If you'd like to help out, please check the Community Portal and our getting started guide. Also, check out our sister project on poewiki.net.

Module:Template test case/data: Difference between revisions

From Path of Exile 2 Wiki
Jump to navigation Jump to search
(Created page with "-- This module processes configuration data for use in -- Module:Template test case. It is loaded from the main module with -- mw.loadData. local cfg = require('Module:Template test case/config') local function escapePattern(s) s = s:gsub('%p', '%%%0') return s end -- Escape config items that need to be used as patterns. Doing it here is more -- efficient, as mw.loadData saves them from having to be computed for every -- test case on a page. cfg.templateNameMagi...")
m (1 revision imported)
 
(No difference)

Latest revision as of 22:05, 2 April 2025

Module documentation[view] [edit] [history] [purge]


This module processes configuration data for use in Module:Template test case. It is loaded from the main module with mw.loadData.

This module was adapted from Module:Template test case/data on Wikipedia.
Adaptation is noted for reference and attribution only. This module may differ from the original in function or in usage.


-- This module processes configuration data for use in
-- [[Module:Template test case]]. It is loaded from the main module with
-- mw.loadData.

local cfg = require('Module:Template test case/config')

local function escapePattern(s)
	s = s:gsub('%p', '%%%0')
	return s
end

-- Escape config items that need to be used as patterns. Doing it here is more
-- efficient, as mw.loadData saves them from having to be computed for every
-- test case on a page.
cfg.templateNameMagicWordPattern = escapePattern(cfg.templateNameMagicWord)
cfg.sandboxSubpagePattern = '/' .. escapePattern(cfg.sandboxSubpage) .. '$'

return cfg