Documentation
Documentation copied to clipboard
Table Headers are Always Left Aligned
Table headers are always left aligned. This seems to be as a result of a configuration in Web which was not properly handled for GitHub markdown.

This can be remedied using attribute selectors on the CSS headers to match the alignment of the td:
th[align="center"] {
text-align: center;
}
th[align="left"] {
text-align: left;
}
th[align="right"] {
text-align: right;
}