Jump to content

Module:Subject bar/doc: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
module portal
another Lua module
Line 1: Line 1:
{{module rating|beta}}
{{module rating|beta}}
{{high use}}
{{high use}}
{{Lua|Module:Portal}}
{{Lua|Module:Portal|Module:Sister project links}}
{{uses TemplateStyles|Module:Subject bar/styles.css}}
{{uses TemplateStyles|Module:Subject bar/styles.css}}
This module implements the {{tl|Subject bar}} template. Please don't use this module from an article or from another wiki page. You should use the {{tl|Subject bar}} template instead. To use the module from another Lua module, read on.
This module implements the {{tl|Subject bar}} template. Please don't use this module from an article or from another wiki page. You should use the {{tl|Subject bar}} template instead. To use the module from another Lua module, read on.

Revision as of 10:41, 3 December 2021

This module implements the {{Subject bar}} template. Please don't use this module from an article or from another wiki page. You should use the {{Subject bar}} template instead. To use the module from another Lua module, read on.

Use from another Lua module

Load the module like this:

local subjectBar = require('Module:Subject bar')._main

Then you can use the subjectBar function like this:

local myBar = subjectBar{
    portal = 'Portal 1',
    portal2 = 'Portal 2',
    -- ...
    commons = true,
    commons-search = 'Commons search string',
    wikt = true,
    wikt-search = 'Wiktionary search string'
    -- ...
}

Please see Template:Subject bar/doc for a full list of possible parameters.