Module:Sourcrowd: Difference between revisions

From TestWiki
Content added Content deleted
(user test module)
 
(modify)
Line 9: Line 9:
local p = {}
local p = {}


function p.main(frame)
function p.main( frame )
if frame.args[2] then
if frame.args[2] then
return "HTML"
return "HTML"
Line 17: Line 17:
end
end


function p.a2b( str )
return
end

function p.b2a( str, ctype )
return
end
return p
return p

Revision as of 20:12, 12 March 2017

Documentation for this module may be created at Module:Sourcrowd/doc

--[[  

This module is intended as test environment of user:Sourcrowd.

PLEASE DO NOT MODIFY!

]]

local p = {}

function p.main( frame )
	if frame.args[2] then
		return "HTML"
	else
		return "UTF"
	end
end

function p.a2b( str )
	return
end

function p.b2a( str, ctype ) 
	return
end
return p