Модуль:Поиск шаблона страницы

Материал из Space Station 14 Вики
Версия от 14:10, 6 марта 2025; Pok (обсуждение | вклад) (Новая страница: «local p = {} function p.main(frame) local pageTitle = mw.title.getCurrentTitle() local content = pageTitle:getContent() if content and not content:match("строка") then return "Нет" end return "Да" end return p»)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Для документации этого модуля может быть создана страница Модуль:Поиск шаблона страницы/doc

local p = {}

function p.main(frame)
    local pageTitle = mw.title.getCurrentTitle()
    local content = pageTitle:getContent()

    if content and not content:match("строка") then
        return "Нет"
    end

    return "Да"
end

return p