我想创建一个项目gh-pages
,并且我已在本地安装了jekyll
和pygments
。
但是当网站推出时,代码片段显示时没有任何颜色,只有背景。
即使我将它们推入github,它也显示没有任何颜色。
我的网页地址为http://leftstick.github.io/angularjs-requirejs-skeleton/
,
有人能说出为什么它似乎没有用吗?
由于
答案 0 :(得分:1)
你使用反引号(````)突出显示但它不起作用。您最好使用 {%highlight JavaScript%} 标记。 这就是诀窍:
{% highlight JavaScript %}
(function(require) {
var baseUrl = '/';
require.config({
baseUrl: baseUrl,
paths: {
//configure the path
}
//anything else, place it here if you need
});
var preloads = [];//place your preloads path ids here
//Load all preload dependencies
require(preloads, function() {
require(['js/boot']);
});
}(require));
{% endhighlight %}