Centering a table that is centered in page in markdown

I was about to say the same thing. I use the align attribute a lot especially where CSS is not possible like on a README.md file.

<div align="center">

<table>
</table>

</div>

It works with markdown too, if you don’t indent it

<div align="center">

## My title

![My image](logo.png)

</div>