Elite stay(讨论 | 贡献) (创建页面,内容为“local p = {} function p.strip( frame ) return mw.text.killMarkers( frame.args[1] ) end return p”) |
Elite stay(讨论 | 贡献) 小 |
||
第4行: | 第4行: | ||
function p.strip( frame ) |
function p.strip( frame ) |
||
return mw.text.killMarkers( frame.args[1] ) |
return mw.text.killMarkers( frame.args[1] ) |
||
+ | end |
||
+ | |||
+ | function p.trim( frame ) |
||
+ | return mw.text.trim( frame.args[1] ) |
||
end |
end |
||
2019年2月1日 (五) 04:48的最新版本
Removes all strip markers from the given text. Used to fix some SMW storage problems related to Cargo.
local p = {}
function p.strip( frame )
return mw.text.killMarkers( frame.args[1] )
end
function p.trim( frame )
return mw.text.trim( frame.args[1] )
end
return p