Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to create a Markdown table? #2088

Open
stephenliu1944 opened this issue Dec 15, 2022 · 1 comment
Open

how to create a Markdown table? #2088

stephenliu1944 opened this issue Dec 15, 2022 · 1 comment

Comments

@stephenliu1944
Copy link

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

@stephenliu1944
Copy link
Author

looks like the 'rsg--x' class only render to the last table.
image

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant