0

我打算设计自己的网站,其中将包含许多带有代码块的页面,使用多种语言(C/C++、Python、BASH、Obj-C 等)

有些网站有非常漂亮的代码块,例如:

在此处输入图像描述

(来自http://www.blender.org/documentation/blender_python_api_2_59_2/mathutils.html

是否有任何公开可用的库允许我输入一段代码并返回漂亮的 HTML?

理想情况下,只寻找可以与我的 Atom 配色方案同步的东西。

编辑:我找到了http://syntaxhighlighter.codeplex.com/

4

1 回答 1

0

我注意到您已经找到了自己的答案,但我认为有更多选择很好,所以这里有另一个:

Stack Exchange 使用这个http://google-code-prettify.googlecode.com/svn/trunk/README.html

现场示例观看它的工作):

exports.create = function(req, res) {
    var article = new Article(req.body);
    article.user = req.user;

    article.save(function(err) {
        if (err) {
            return res.send('users/signup', {
                errors: err.errors,
                article: article
            });
        } else {
            res.jsonp(article);
        }
    });
};

到底有多漂亮?当然,这取决于您的实施;)

于 2014-05-21T05:23:13.790 回答