You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a reason to handle === in isHrMD and * --- in SpinVditorDOM? === is changed after typing enter, but * --- is changed without enter.
I think enter is better.
The text was updated successfully, but these errors were encountered:
Is there a reason to handle === in isHrMD and * --- in SpinVditorDOM?
Because parsing <li> is complicated, there are many rules to follow by, so we need Lute to handle it. Instead, parsing <hr> is simpler, and Vditor needs to decide when to parse. For example, when the user types a space, some times need to parse but some times need not be.
When needs to parse is the core user experience, we should focus on it always. Our guideline is instant as much as possible. The Setext Heading (--- and ===) support just improved, maybe rendered without typing enter in the future.
https://github.github.com/gfm/#example-31
Is there a reason to handle
===
in isHrMD and* ---
in SpinVditorDOM?===
is changed after typingenter
, but* ---
is changed withoutenter
.I think
enter
is better.The text was updated successfully, but these errors were encountered: