mirror of https://github.com/status-im/codimd.git
Remove metadata spellcheck support
This commit is contained in:
parent
3424cdd771
commit
6577313925
|
@ -115,16 +115,4 @@ This option let you to choose to parse mathjax syntax or not.
|
|||
**Example**
|
||||
```xml
|
||||
mathjax: false
|
||||
```
|
||||
|
||||
spellcheck
|
||||
---
|
||||
**Warning: Experimental feature!**
|
||||
This option let you to choose to enable spell checking feature or not.
|
||||
|
||||
> default: not set (which will be false)
|
||||
|
||||
**Example**
|
||||
```xml
|
||||
spellcheck: true
|
||||
```
|
|
@ -102,13 +102,11 @@ function parseMeta(md, edit, view, toc, tocAffix) {
|
|||
var lang = null;
|
||||
var dir = null;
|
||||
var breaks = true;
|
||||
var spellcheck = false;
|
||||
if (md && md.meta) {
|
||||
var meta = md.meta;
|
||||
lang = meta.lang;
|
||||
dir = meta.dir;
|
||||
breaks = meta.breaks;
|
||||
spellcheck = meta.spellcheck;
|
||||
}
|
||||
//text language
|
||||
if (lang && typeof lang == "string") {
|
||||
|
@ -140,18 +138,6 @@ function parseMeta(md, edit, view, toc, tocAffix) {
|
|||
} else {
|
||||
md.options.breaks = true;
|
||||
}
|
||||
// spell check
|
||||
if (typeof editor === 'object') {
|
||||
var mode = null;
|
||||
if (typeof spellcheck === 'boolean' && spellcheck) {
|
||||
mode = 'spell-checker';
|
||||
} else {
|
||||
mode = 'gfm';
|
||||
}
|
||||
if (mode && mode !== editor.getOption('mode')) {
|
||||
editor.setOption('mode', mode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var viewAjaxCallback = null;
|
||||
|
|
Loading…
Reference in New Issue