Module:Template test case/config

Nothing to hide, but nothing to show you either.
Revision as of 13:54, 27 November 2014 by wikipedia>Mr. Stradivarius (create a config table with wrapper templates and their default options)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Template test case/config/doc

-- This module holds configuration data for [[Module:Template test cases]].

return {

wrappers = {
	['Template:Test case'] = {
		func = 'table'
	},
	['Template:Testcase table'] = {
		func = 'table',
		options = {format = 'columns'}
	},
	['Template:Testcase rows'] = {
		func = 'table',
		options = {format = 'rows'}
	},
	['Template:Test case nowiki'] = {
		func = 'nowiki',
		options = {showcode = true}
	}
}

}