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

Tables contained inside of lists are not parsed correctly #68

Closed
adaboese opened this issue Dec 28, 2023 · 1 comment · Fixed by #70
Closed

Tables contained inside of lists are not parsed correctly #68

adaboese opened this issue Dec 28, 2023 · 1 comment · Fixed by #70

Comments

@adaboese
Copy link

Input:

<ul>
  <li>
    <p>foo</p>
    <table>
      <thead>
        <tr>
          <th>foo</th>
          <th>bar</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>baz</td>
          <td>qux</td>
        </tr>
      </tbody>
    </table>
  </li>
</ul>

Actual:

* foo

|foo|bar|
|---|---|
|baz|qux|

Expected:

* foo
  |foo|bar|
  |---|---|
  |baz|qux|
@stonehank
Copy link
Owner

stonehank commented Jan 5, 2024

@adaboese Thanks the report, will solve it recently

@stonehank stonehank linked a pull request Jan 7, 2024 that will close this issue
stonehank added a commit that referenced this issue Jan 7, 2024
68-fixed: add nest space for table tag in list
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

Successfully merging a pull request may close this issue.

2 participants