Module:Chessboard mxn: Difference between revisions

Content deleted Content added
extend (will test)
typo
Line 5:
return (col <= 26) and ( "abcdefghijklmnopqrstuvwxyz" ):sub( col, col )
or ( "abcdefghijklmnopqrstuvwxyz" ):sub( math.floor(col/26), math.floor(col/26) )
.. ( "abcdefghijklmnopqrstuvwxyz" ):sub( col-math.floor(col/26)*26 + 1, col-math.floor(col/26)*26 + 1)
end
function image_square( pc, row, col, size, t, flip, altprefix )