react-styleguidist
react-styleguidist copied to clipboard
how to create a Markdown table?
When I use the following two methods to create a table in .md file:
|A|B|C|
|-|-|-|
|a|b|c|
|a|b|c|
// or
<table>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
<tr>
<td>a</td>
<td>b</td>
<td>c</td>
</tr>
</table>
the PROPS & METHODS table was broken like this:
looks like the 'rsg--x' class only render to the last table.