Documentation for this module may be created at Module:Sandbox/Matyapiro31/Crazyhousechesstest/doc

--test code for crazyhouse chess diagram.
local p = {}
local chess = require('Module:Chessboard')
function p.board(frame)
	local args = frame.args
	local fen = args.fen
	
	if ( not fen ) then
		return chess.board(frame)
	end
end
return p