Dota 2 Wiki
Advertisement

Documentation for Module:KillMarkers Jump to code ↴ [ edit | purge ]

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
Advertisement