Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

颜色显示异常的问题 #4

Open
Zhaoxian-Wu opened this issue Feb 20, 2018 · 1 comment
Open

颜色显示异常的问题 #4

Zhaoxian-Wu opened this issue Feb 20, 2018 · 1 comment

Comments

@Zhaoxian-Wu
Copy link

Zhaoxian-Wu commented Feb 20, 2018

编辑器里有一些元素的颜色无法正常显示,如
1.[toc] (蓝色无法显示)
2.这是去往Leanote官方博客 的链接。(链接没有蓝色,没有下划线)
3.代码块颜色不正常

/**
* nth element in the fibonacci series.
* @param n >= 0
* @return the nth element, >= 0.
*/
function fib(n) {
    var a = 1, b = 1;
    var tmp;
    while (--n >= 0) {
        tmp = a;
        a += b;
        b = tmp;
    }
    return a;
}

document.write(fib(10));

上面的几个问题在Leanote的发行版上面显示是没问题的,就是在这个editor里面出现问题

@Zhaoxian-Wu
Copy link
Author

报出一个警告misspelled option "spellcheck"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant