18

我想对纯文本使用CodeMirror的功能(例如行号、换行、搜索等),而不需要特别需要代码突出显示,而是使用 Google Chrome 拼写检查器或其他一些自然语言(尤其是英语)拼写检查激活(我不需要让它在其他浏览器上工作)。我怎样才能做到这一点?是否可以编写一个启用拼写检查的纯文本模式插件?

4

6 回答 6

29

在为NoTex.ch编码时,我实际上将typo.jsCodeMirror集成在一起;你可以在这里看看CodeMirror.rest.js;我需要一种方法来检查reStructuredText标记的拼写,并且由于我使用 CodeMirror 出色的语法突出显示功能,所以这很简单。

您可以在提供的链接中查看代码,但我会总结一下我所做的:

  1. 初始化typo.js 库;另请参阅作者的博客/文档:

    var typo = new Typo ("en_US", AFF_DATA, DIC_DATA, {
        platform: 'any'
    });
    
  2. 为您的单词分隔符定义一个正则表达式:

    var rx_word = "!\"#$%&()*+,-./:;<=>?@[\\\\\\]^_`{|}~";
    
  3. 为 CodeMirror 定义覆盖模式:

    CodeMirror.defineMode ("myoverlay", function (config, parserConfig) {
        var overlay = {
            token: function (stream, state) {
    
                if (stream.match (rx_word) &&
                    typo && !typo.check (stream.current ()))
    
                    return "spell-error"; //CSS class: cm-spell-error
    
                while (stream.next () != null) {
                    if (stream.match (rx_word, false)) return null;
                }
    
                return null;
            }
        };
    
        var mode = CodeMirror.getMode (
            config, parserConfig.backdrop || "text/x-myoverlay"
        );
    
        return CodeMirror.overlayMode (mode, overlay);
    });
    
  4. 将覆盖与 CodeMirror 一起使用;请参阅用户手册以了解您是如何做到这一点的。我已经在我的代码中完成了它,所以你也可以在那里查看它,但我推荐使用用户手册。

  5. 定义 CSS 类:

    .CodeMirror .cm-spell-error {
         background: url(images/red-wavy-underline.gif) bottom repeat-x;
    }
    

这种方法适用于德语、英语和西班牙语。对于法语词典来说, typo.js似乎有一些(口音)问题,而像希伯来语、匈牙利语和意大利语这样的语言 - 词缀的数量很长或者字典非常广泛 - 它实际上不起作用,因为typo.js在其当前的实现中使用了太多的内存并且太慢了。

使用德语(和西班牙语)typo.js可以阻止 JavaScript VM 几百毫秒(但仅限于初始化期间!),因此您可能需要考虑使用 HTML5 Web 工作者的后台线程(参见CodeMirror.typo.worker.js了解例子)。此外, typo.js似乎不支持 Unicode(由于 JavaScript 的限制):至少,我没有设法让它与非拉丁语言(如俄语、希腊语、印地语等)一起使用。

除了(现在相当大)NoTex.ch 之外,我还没有将所描述的解决方案重构为一个很好的独立项目,但我可能很快就会这样做;在此之前,您必须根据上述描述或提示代码修补您自己的解决方案。我希望这有帮助。

于 2012-09-17T15:43:25.263 回答
3

这是 hsk81 答案的工作版本。它使用 CodeMirror 的覆盖模式,并在引号、html 标记等中查找任何单词。它有一个示例 Typo.check,应该用 Typo.js 之类的东西替换。它用红色波浪线在未知单词下划线。

这是使用 IPython 的 %%html 单元格测试的。

<style>
.CodeMirror .cm-spell-error {
     background: url("https://raw.githubusercontent.com/jwulf/typojs-project/master/public/images/red-wavy-underline.gif") bottom repeat-x;
}
</style>

<h2>Overlay Parser Demo</h2>
<form><textarea id="code" name="code">
</textarea></form>

<script>
var typo = { check: function(current) {
                var dictionary = {"apple": 1, "banana":1, "can't":1, "this":1, "that":1, "the":1};
                return current.toLowerCase() in dictionary;
            }
}

CodeMirror.defineMode("spell-check", function(config, parserConfig) {
    var rx_word = new RegExp("[^\!\"\#\$\%\&\(\)\*\+\,\-\.\/\:\;\<\=\>\?\@\[\\\]\^\_\`\{\|\}\~\ ]");
    var spellOverlay = {
        token: function (stream, state) {
          var ch;
          if (stream.match(rx_word)) { 
            while ((ch = stream.peek()) != null) {
                  if (!ch.match(rx_word)) {
                    break;
                  }
                  stream.next();
            }
            if (!typo.check(stream.current()))
                return "spell-error";
            return null;
          }
          while (stream.next() != null && !stream.match(rx_word, false)) {}
          return null;
        }
    };

  return CodeMirror.overlayMode(CodeMirror.getMode(config, parserConfig.backdrop || "text/html"), spellOverlay);
});

var editor = CodeMirror.fromTextArea(document.getElementById("code"), {mode: "spell-check"});
</script>
于 2014-07-16T12:16:15.743 回答
3

在 CodeMirror 5.18.0 及更高版本中,您可以设置inputStyle: 'contenteditable'spellcheck: true能够使用 Web 浏览器的拼写检查功能。例如:

var myTextArea = document.getElementById('my-text-area');
var editor = CodeMirror.fromTextArea(myTextArea, {
    inputStyle: 'contenteditable',
    spellcheck: true,
});

使该解决方案成为可能的相关提交是:

于 2021-03-15T15:54:29.880 回答
1

不久前,我写了一个波浪形下划线类型的拼写检查器。老实说,它需要重写,那时我对 JavaScript 还很陌生。但原则都在那里。

https://github.com/jameswestgate/SpellAsYouType

于 2012-09-17T10:46:53.367 回答
1

CodeMirror 不是基于 HTML 文本区域,因此您不能使用内置的拼写检查

您可以使用诸如typo.js 之类的代码实现自己的拼写检查

我不相信有人已经这样做了。

于 2012-09-14T03:06:58.073 回答
1

我创建了一个带有拼写错误建议/更正的拼写检查器:

https://gist.github.com/kofifus/4b2f79cadc871a29439d919692099406

演示:https ://plnkr.co/edit/0y1wCHXx3k3mZaHFOPHT

以下是代码的相关部分:

首先,我承诺加载字典。我使用typo.js作为字典,如果它们不在本地托管,加载可能需要一段时间,所以最好在登录/CM初始化等之前开始加载:

function loadTypo() {
    // hosting the dicts on your local domain will give much faster results
    const affDict='https://rawgit.com/ropensci/hunspell/master/inst/dict/en_US.aff';
    const dicDict='https://rawgit.com/ropensci/hunspell/master/inst/dict/en_US.dic';

    return new Promise(function(resolve, reject) {
        var xhr_aff = new XMLHttpRequest();
        xhr_aff.open('GET', affDict, true);
        xhr_aff.onload = function() {
            if (xhr_aff.readyState === 4 && xhr_aff.status === 200) {
                //console.log('aff loaded');
                var xhr_dic = new XMLHttpRequest();
                xhr_dic.open('GET', dicDict, true);
                xhr_dic.onload = function() {
                    if (xhr_dic.readyState === 4 && xhr_dic.status === 200) {
                        //console.log('dic loaded');
                        resolve(new Typo('en_US', xhr_aff.responseText, xhr_dic.responseText, { platform: 'any' }));
                    } else {
                        console.log('failed loading aff');
                        reject();
                    }
                };
                //console.log('loading dic');
                xhr_dic.send(null);
            } else {
                console.log('failed loading aff');
                reject();
            }
        };
        //console.log('loading aff');
        xhr_aff.send(null);
    });
}

其次,我添加了一个覆盖来检测和标记这样的错别字:

cm.spellcheckOverlay={
    token: function(stream) {
        var ch = stream.peek();
        var word = "";

        if (rx_word.includes(ch) || ch==='\uE000' || ch==='\uE001') {
            stream.next();
            return null;
        }

        while ((ch = stream.peek()) && !rx_word.includes(ch)) {
            word += ch;
            stream.next();
        }

        if (! /[a-z]/i.test(word)) return null; // no letters
        if (startSpellCheck.ignoreDict[word]) return null;
        if (!typo.check(word)) return "spell-error"; // CSS class: cm-spell-error
    }
}
cm.addOverlay(cm.spellcheckOverlay);

第三,我使用列表框来显示建议并修复错别字:

function getSuggestionBox(typo) {
    function sboxShow(cm, sbox, items, x, y) {
        let selwidget=sbox.children[0];

        let options='';
        if (items==='hourglass') {
            options='<option>&#8987;</option>'; // hourglass
        } else {
            items.forEach(s => options += '<option value="' + s + '">' + s + '</option>');
            options+='<option value="##ignoreall##">ignore&nbsp;all</option>';
        }
        selwidget.innerHTML=options;
        selwidget.disabled=(items==='hourglass');
        selwidget.size = selwidget.length;
        selwidget.value=-1;

        // position widget inside cm
        let cmrect=cm.getWrapperElement().getBoundingClientRect();
        sbox.style.left=x+'px';  
        sbox.style.top=(y-sbox.offsetHeight/2)+'px'; 
        let widgetRect = sbox.getBoundingClientRect();
        if (widgetRect.top<cmrect.top) sbox.style.top=(cmrect.top+2)+'px';
        if (widgetRect.right>cmrect.right) sbox.style.left=(cmrect.right-widgetRect.width-2)+'px';
        if (widgetRect.bottom>cmrect.bottom) sbox.style.top=(cmrect.bottom-widgetRect.height-2)+'px';
    }

    function sboxHide(sbox) {
        sbox.style.top=sbox.style.left='-1000px';  
    }

    // create suggestions widget
    let sbox=document.getElementById('suggestBox');
    if (!sbox) {
        sbox=document.createElement('div');
        sbox.style.zIndex=100000;
        sbox.id='suggestBox';
        sbox.style.position='fixed';
        sboxHide(sbox);

        let selwidget=document.createElement('select');
        selwidget.multiple='yes';
        sbox.appendChild(selwidget);

        sbox.suggest=((cm, e) => { // e is the event from cm contextmenu event
            if (!e.target.classList.contains('cm-spell-error')) return false; // not on typo

            let token=e.target.innerText;
            if (!token) return false; // sanity

            // save cm instance, token, token coordinates in sbox
            sbox.codeMirror=cm;
            sbox.token=token;
            let tokenRect = e.target.getBoundingClientRect();
            let start=cm.coordsChar({left: tokenRect.left+1, top: tokenRect.top+1});
            let end=cm.coordsChar({left: tokenRect.right-1, top: tokenRect.top+1});
            sbox.cmpos={ line: start.line, start: start.ch, end: end.ch};

            // show hourglass
            sboxShow(cm, sbox, 'hourglass', e.pageX, e.pageY);

            // let  the ui refresh with the hourglass & show suggestions
            setTimeout(() => { 
                sboxShow(cm, sbox, typo.suggest(token), e.pageX, e.pageY); // typo.suggest takes a while
            }, 100);

            e.preventDefault();
            return false;
        });

        sbox.onmouseleave=(e => { 
            sboxHide(sbox)
        });

        selwidget.onchange=(e => {
            sboxHide(sbox)
            let cm=sbox.codeMirror, correction=e.target.value;
            if (correction=='##ignoreall##') {
                startSpellCheck.ignoreDict[sbox.token]=true;
                cm.setOption('maxHighlightLength', (--cm.options.maxHighlightLength) +1); // ugly hack to rerun overlays
            } else {
                cm.replaceRange(correction, { line: sbox.cmpos.line, ch: sbox.cmpos.start}, { line: sbox.cmpos.line, ch: sbox.cmpos.end});
                cm.focus();
                cm.setCursor({line: sbox.cmpos.line, ch: sbox.cmpos.start+correction.length});
            }
        });

        document.body.appendChild(sbox);
    }

    return sbox;
}

希望这可以帮助 !

于 2016-07-29T01:14:14.570 回答