[Regression] input \n after typing url will not become link
miku1958 opened this issue · comments
庄黛淳华 commented
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
- Go to Demo
- input a url like http://www.microsoft.com
- input EnterKey
Expected behavior
url become link
Device Information
- OS: macOS
- Browser safari
- Version 18.0.1
Jiuqing Song commented
Please check out the PR #2837, and it requires enabling an experimental feature HandleEnterKey
.
For example:
const editor = new Editor(div, {
experimentalFeatures: [ 'HandleEnterKey' ],
...
});