Module:SEO
此模块的文档可以在Module:SEO/doc创建
-- Module:SEO
local seo = {}
--[[
argTable format:
{
title_mode = 'append',
title = 'Example Seo Wiki',
keywords = 'WikiSEO, SEO, MediaWiki',
-- ...
}
]]--
function seo.set( argTable )
mw.ext.seo.set( argTable )
end
function seo.setStatic()
mw.ext.seo.set{
title_mode = 'replace',
title = tostring(mw.title.getCurrentTitle()) .. ' - Musico (Lyricsinfo) Wiki 歌词维基',
keywords = '歌词, Lyrics, 维基, Wiki, Liner notes, 音乐制作信息, credits, Lyric Video, 动态歌词',
description = '此维基页面包括《' .. tostring(mw.title.getCurrentTitle()) .. '》的准确歌词 Lyrics、制作人员 Credits、Liner Notes、录音版本 Versions等信息。'
}
end
return seo