Модуль:Поиск шаблона страницы: различия между версиями
Материал из Space Station 14 Вики
Pok (обсуждение | вклад) мНет описания правки |
Pok (обсуждение | вклад) мНет описания правки |
||
| Строка 13: | Строка 13: | ||
local cleanedContent = content:gsub("{{#invoke:Поиск строк страницы|main|[^}]+}}", "") | local cleanedContent = content:gsub("{{#invoke:Поиск строк страницы|main|[^}]+}}", "") | ||
local cleanedContent = content:gsub("<code>[^}]+</code>", "") | |||
if not cleanedContent:match(searchText) then | if not cleanedContent:match(searchText) then | ||
Версия от 14:24, 6 марта 2025
Для документации этого модуля может быть создана страница Модуль:Поиск шаблона страницы/doc
local p = {}
function p.main(frame)
local args = frame.args
local searchText = args[1] or ""
local title = mw.title.getCurrentTitle()
local content = title:getContent()
if not content then
return "Нет"
end
local cleanedContent = content:gsub("{{#invoke:Поиск строк страницы|main|[^}]+}}", "")
local cleanedContent = content:gsub("<code>[^}]+</code>", "")
if not cleanedContent:match(searchText) then
return "Нет"
end
return "Да"
end
return p