Table with stripe every third row

<pinp>
	$tableData = array(
		array( 'nl', 'Netherlands', 'Dutch' ),
		array( 'de', 'Germany', 'German' ),
		array( 'fr', 'France', 'French' ),
		array( 'uk', 'United Kingdom', 'English' ),
		array( 'be', 'Belgium', 'Dutch, French' )
	);
	$table = ar('html')->table( $tableData )
	->head( array('ISO Code', 'Country', 'Languages') )
	->caption( 'Countries and languages by ISO Country Code' );
	
	$table->tbody->tr->setAttribute( 'class', array(
		'third' => ar::listPattern( " ( .{2} third )* " )
	));

	echo $table;
</pinp>