Markdown extra not work

AFAIK there is no way to add a class to a table in markdown extra.
One possible alternative is to wrap your table in a div

<div class="divtable" markdown="1"> 

First Header  | Second Header
------------- | -------------
Content Cell  | Content Cell
Content Cell  | Content Cell

 </div>

then use the .divtable table { } selector.

1 Like