Module:Error:修订历史

差异选择:选中要对比的修订的单选按钮,然后按Enter键或下面的按钮。
说明:(当前)=与最后修订的差异,(之前)=与上个修订的差异,=小编辑。

2024年11月1日 (星期五)

  • 当前之前 11:482024年11月1日 (五) 11:48Selfice 留言 贡献 828字节 +828 创建页面,内容为“local p = {} local availableTags = { p = true, span = true, div = true, strong = true } function p.call( content, tag, nocat ) tag = string.lower( tag or '' ) return tostring( mw.html.create( availableTags[ tag ] and tag or 'strong' ) :addClass( 'error' ) :wikitext( content or '' ) ) .. ( nocat and '' or 'Category:页面内有Error模板指定的错误' ) end function p.main( f ) local args = f local frame = mw.getCurrentFrame() i…”