Модуль: MP: различия между версиями 🔗
Материал из VEDA Wiki
Sphynkx (обсуждение | вклад) Нет описания правки |
Sphynkx (обсуждение | вклад) Нет описания правки Метка: отменено |
||
Строка 18: | Строка 18: | ||
redirects = include | redirects = include | ||
mode = unordered | mode = unordered | ||
</DynamicPageList>]=]) | </DynamicPageList>]=]).text | ||
for i in string.gmatch(m, "[^%s]+") do | for i in string.gmatch(m, "[^%s]+") do |
Версия от 02:19, 18 октября 2024
Для документации этого модуля может быть создана страница Модуль:MP/doc
local p = {}
function p.mpf( frame )
-- return ' is a [[' .. mw.site.namespaces[3000].name .. ':stub|stub]]. You can help ' .. mw.site.siteName .. ' by ['
return #mw.site.namespaces[3000]
end
function p.mpf2( frame )
-- thankx https://warframe.fandom.com/es/wiki/M%C3%B3dulo:DependencyGraph
local t ={}
local m= mw.getCurrentFrame():preprocess([=[<DynamicPageList>
category =
namespace =
ordermethod = sortkey
order = ascending
redirects = include
mode = unordered
</DynamicPageList>]=]).text
for i in string.gmatch(m, "[^%s]+") do
table.insert(t, i..'XXX')
end
return table.concat(t, 'MMM')
end
return p