Module:CareerList/config: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
PeaceDeadC (talk | contribs) No edit summary |
PeaceDeadC (talk | contribs) No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
-- конфигурация сайтов |
|||
local sites = { |
|||
Example1 = { |
|||
name = 'Example 1', |
|||
| ⚫ | |||
| ⚫ | |||
Example2 = { |
|||
name = 'Example 2', |
|||
| ⚫ | |||
} |
|||
| ⚫ | |||
-- экспорт конфигурации |
|||
return { |
return { |
||
example1 = { |
|||
sites = sites |
|||
| ⚫ | |||
id = 'id', |
|||
alias = 'alias', -- добавлено |
|||
notes = 'notes' -- добавлено |
|||
| ⚫ | |||
example2 = { |
|||
| ⚫ | |||
id = 'id', |
|||
alias = 'alias', -- добавлено |
|||
notes = 'notes' -- добавлено |
|||
| ⚫ | |||
} |
} |
||
Latest revision as of 01:48, 13 March 2023
Documentation for this module may be created at Module:CareerList/config/doc
return {
example1 = {
url = 'https://example1.com/$1/',
id = 'id',
alias = 'alias', -- добавлено
notes = 'notes' -- добавлено
},
example2 = {
url = 'https://example2.com/$1/',
id = 'id',
alias = 'alias', -- добавлено
notes = 'notes' -- добавлено
}
}