splitbee / react-notion

A fast React renderer for Notion pages
https://react-notion.com
MIT License
2.86k stars 151 forks source link

Lists start over with each item #46

Closed khrome83 closed 3 years ago

khrome83 commented 3 years ago

For some reason, lists start over with each item is rendered.

So instead of -

<ul>
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ul>

It comes out as -

<ul>
  <li>Item 1</li>
</ul>
<ul>
  <li>Item 2</li>
</ul>
<ul>
  <li>Item 3</li>
</ul>

It has the correct notion classes and everything. But it always starts the list over.

tobiaslins commented 3 years ago

While this is true, does it give you render issues? We had to use this approach to support all edge cases (nested lists,..)

Please reopen this issue with a Notion document in case you have issues!

grimalschi commented 2 years ago

What about SEO? Does Google understands this kind of lists?