You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*** nth element in the fibonacci series.* @param n >= 0* @return the nth element, >= 0.*/functionfib(n){vara=1,b=1;vartmp;while(--n>=0){tmp=a;a+=b;b=tmp;}returna;}document.write(fib(10));
上面的几个问题在Leanote的发行版上面显示是没问题的,就是在这个editor里面出现问题
The text was updated successfully, but these errors were encountered:
编辑器里有一些元素的颜色无法正常显示,如
1.[toc] (蓝色无法显示)
2.这是去往Leanote官方博客 的链接。(链接没有蓝色,没有下划线)
3.代码块颜色不正常
上面的几个问题在Leanote的发行版上面显示是没问题的,就是在这个editor里面出现问题
The text was updated successfully, but these errors were encountered: