Module:Template test case/config: Difference between revisions
add a messages table and expand the comments
m (Jackmcbarn moved page Module:Template test cases/config to Module:Template test case/config without leaving a redirect: along with parent module) |
(add a messages table and expand the comments) |
||
Line 1: | Line 1: | ||
------------------------------------------------------------------------------- | |||
-- Module:Template test case/config | |||
-- This module holds configuration data for [[Module:Template test case]]. | -- This module holds configuration data for [[Module:Template test case]]. | ||
------------------------------------------------------------------------------- | |||
return { | return { | ||
------------------------------------------------------------------------------- | |||
-- Options | |||
------------------------------------------------------------------------------- | |||
-- The magic word used in place of the template name when making nowiki | -- The magic word used in place of the template name when making nowiki | ||
Line 12: | Line 19: | ||
sandboxSubpage = 'sandbox', | sandboxSubpage = 'sandbox', | ||
------------------------------------------------------------------------------- | |||
-- Messages | |||
------------------------------------------------------------------------------- | |||
msg = { | |||
-- The error message to use if a nowiki invocation is used but the template | |||
-- name magic word is not found. | |||
['nowiki-magic-word-error'] = "the template invocation must include '$1' in " .. | |||
"place of the template name", | |||
}, | |||
------------------------------------------------------------------------------- | |||
-- Wrapper template config. | -- Wrapper template config. | ||
-- | -- The wrapper template config is a table with wrapper template names as keys, | ||
-- containing two fields: | -- and subtables containing two fields: | ||
-- func - the function name to be used with that template. This must be a | -- func - the function name to be used with that template. This must be a | ||
-- function exported by the main module. This is optional: the default | -- function exported by the main module. This is optional: the default | ||
Line 20: | Line 41: | ||
-- args - a table of default arguments to be used with that template. This is | -- args - a table of default arguments to be used with that template. This is | ||
-- is optional. | -- is optional. | ||
------------------------------------------------------------------------------- | |||
wrappers = { | wrappers = { | ||
['Template:Test case'] = {}, | ['Template:Test case'] = {}, | ||
Line 32: | Line 55: | ||
} | } | ||
} | } | ||
------------------------------------------------------------------------------- | |||
-- End config | |||
------------------------------------------------------------------------------- | |||
} | } |