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.

// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a259f5dbac17f689

Jump to content

Module:Sandbox/Aftabuzzaman/Test

From Wikipedia, the free encyclopedia
local export = {}
 
local mapping = {
	["february"]='ফেব্রুয়ারি', ["1"]='১', ["2"]='২'
};

-- translit any words or phrases
function export.tr(text, lang, sc)
	text = mw.ustring.gsub(
		text,
		'([F12])',
		function(c)
			return mapping[c]
		end)
	
	return text
end
 
return export