Module:CareerList/config: Difference between revisions

From Porn Base Central
Jump to navigation Jump to search
No edit summary
No edit summary
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
return {
return {
["site1"] = {
example1 = {
url = 'https://example1.com/$1/',
name = "Название сайта 1",
id = 'id',
type = "Studio", -- тип сайта: "Website" или "Studio"
alias = 'alias', -- добавлено
url = "http://example.com/$1" -- шаблон ссылки с заменяемым параметром $1
notes = 'notes' -- добавлено
},
},
["site2"] = {
example2 = {
name = "Название сайта 2",
url = 'https://example2.com/$1/',
type = "Website",
id = 'id',
url = "http://example.com/$1"
alias = 'alias', -- добавлено
},
notes = 'notes' -- добавлено
-- Добавьте дополнительные сайты здесь
}
}
}

Latest revision as of 04: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' -- добавлено
}
}