Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

Jump to content

Module:Sandbox/Yaris678

From Wikipedia, the free encyclopedia
local z = {}

function z.test( frame )
    return "test:" .. frame.args[1]
end

function z.nowiki( frame )
    return mw.text.nowiki( frame.args[1] )
end

function z.wikilink( frame )
    return "[[" .. frame.args[1] .. "]]"
end

function z.italic1( frame )
    return "''" .. frame.args[1] .. "''"
end

function z.italic2( frame )
    return "<i>" .. frame.args[1] .. "</i>"
end

return z