<?php

include_once '../TableEditor.php';
include_once '../Parser.php';

$file = '../data/blubb.html';
$table = 0;


$parser = new PHPFIT_Parser();
$editor = new PHPFIT_TableEditor( $parser, $file );
$editor->displayHTML( $table );

?>