Module:UnderscoreToPipe

Uit Wiki Raamsdonk



local p = {}
function p.replace(frame)
    return string.gsub( frame.args[1], "_", "|" )
end
return p