Module:Template test case/config: Difference between revisions

    From Nonbinary Wiki
    (create a config table with wrapper templates and their default options)
    (No difference)

    Revision as of 13:54, 27 November 2014

    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}
    	}
    }
    
    }