모듈:FormatURL

이 모듈에 대한 설명문서는 모듈:FormatURL/설명문서에서 만들 수 있습니다

local p = {}

function p.stripScheme(frame)
    local url = frame.args[1] or '' -- Get the first parameter passed to the module
    url = url:gsub('^https?://', '') -- Remove the http:// or https:// scheme from the URL
    return url
end

return p
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}