在 Textarea 中,一些单词会自动变成超链接(summernote)

In Textarea some words become hyperlink automatically (summernote)

在Summernote制作的Textarea中,

当我用冒号 (:) 输入一些单词时(例如,'i:am' 或 'you:are' 之类的东西)

然后回车或者Space栏,就变成了自动超链接...创建了一个href标签。

但只发生在冒号 (:) 上。关于这个问题的任何想法?

提前致谢。

代码 - JavaScript

$(document).ready(function() {
  $("#summernote").summernote({
        lang: 'ko-KR',
        height: 500,
        maxHeight: 500,
        toolbar: [
            ['style', ['bold', 'italic', 'underline', 'clear']],
            ['fontsize', ['fontsize']],
            ['color', ['color']],
            ['para', ['paragraph']],
            ['height', ['height']],
            ['insert', ['link', 'video', 'table', 'hr']],
        ],
    });
  });

代码 - HTML

<div id="summernote"></div>

您目前使用的是什么版本的summernote。因为此问题已如 post 中所述得到修复。

https://github.com/summernote/summernote/pull/2935