Module:CareerList/config: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
No edit summary |
PeaceDeadC (talk | contribs) No edit summary |
||
| (6 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
return { |
return { |
||
example1 = { |
|||
-- Конфигурация для сайта example.com |
|||
url = 'https://example1.com/$1/', |
|||
bromo = { |
|||
id = 'id', |
|||
name = 'Pornosite PBC', -- Название сайта |
|||
alias = 'alias', -- добавлено |
|||
type = 'Website', -- Тип сайта (Website или Studio) |
|||
notes = 'notes' -- добавлено |
|||
url = 'https://example.com/$1', -- Шаблон ссылки на страницу |
|||
}, |
|||
| ⚫ | |||
-- Конфигурация для сайта studio.example.com |
|||
url = 'https://example2.com/$1/', |
|||
studioexample = { |
|||
id = 'id', |
|||
name = 'Example Studio', -- Название студии |
|||
alias = 'alias', -- добавлено |
|||
type = 'Studio', -- Тип сайта (Website или Studio) |
|||
notes = 'notes' -- добавлено |
|||
url = 'https://studio.example.com/$1', -- Шаблон ссылки на страницу |
|||
} |
|||
}, |
|||
-- Конфигурация для сайта example2.com |
|||
| ⚫ | |||
name = 'Example Site 2', -- Название сайта |
|||
type = 'Website', -- Тип сайта (Website или Studio) |
|||
url = 'https://example2.com/$1', -- Шаблон ссылки на страницу |
|||
}, |
|||
} |
} |
||
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' -- добавлено
}
}