I have a table written in github flavored markdown. It is used in Github readme file for a repository.
I need to center the table horizontally, i tried to define align attribute in several tags (parented tags also), but that doesn't seems to take any effect on the alignment.
here's the code i used:
<h1 align="center"> <br> <table align="center"> <tr><td> <img src="./res/logo_static.png" width="200" alt="PasteMyst.Pas"> </td></tr> </table> </h1> logo_static is an image i kept in the same directory, also ignore the alt name used.
