Sorry about that – the table thing is a bug which has been addressed in the next version.
The border thing is here to stay – tables should technically be used for anything other than tabular data.
You can fix both by adding this custom CSS:
table {
table-layout: auto;
}
table, th, td {
border: 0;
}