Skip to content

颜色显示异常的问题 #4

@Zhaoxian-Wu

Description

@Zhaoxian-Wu

编辑器里有一些元素的颜色无法正常显示,如
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里面出现问题

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions