Replies: 1 comment
-
The core tiptap BulletList is set to always have a - aaa <!-- <li>aaaa</li> -->
- bbb If you set - aaa <!-- <li><p>aaa</p></li> -->
- bbb |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The API docs specify that setting
tightLists=true
will not render<p>
s inside<li>
s:However, I still see
<li><p></p></li>
in my output withtightLists=true
:And the test here seems to suggest that this is intended:
tiptap-markdown/__tests__/tight-lists.spec.js
Lines 26 to 31 in 155d5fd
So, what's the desired behaviour for this option -- as the docs specify, or as the code is doing?
Beta Was this translation helpful? Give feedback.
All reactions