markdown-to-jsx icon indicating copy to clipboard operation
markdown-to-jsx copied to clipboard

Markdown table render error in react-styleguidist

Open stephenliu1944 opened this issue 2 years ago • 0 comments

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: image image looks like the 'rsg--x' class only render to the last table.

stephenliu1944 avatar Dec 27 '22 09:12 stephenliu1944