编写python脚本使得web页面上的代码高亮显示

做了一个在线代码高亮的项目,强大的python一如既往没让我失望,一个强大的pygments模块可以对多种(很多)语言进行代码高亮

下面来介绍一下它:

首先安装很简单,使用easy_install来进行安装:

easy_install pygments

安装完后我们来使用,python的简单不会让大家失望:

from pygments.lexers import pythonlexver
from pygments.formatters import htmlformatter
from pygments import highlight
formatter = htmlformatter(encoding=’utf-8′, style = ’emacs’, linenos = true)
code = highlight(‘print “hello, world”‘, pythonlexer(), formatter)
print code

结果

1

print “hello, world”\n

\n’

这样就简单的对代码进行了高亮,当然如果你做了上面操作,然后把内容输入到一个文件里查看,肯定大呼坑爹,因为根本没高亮,因为默认是不会输出css的 我们还要获取css加入到html中去:

css = formatter.get_style_defs()

然后把css内容和上面的html一起写入到html文件就可以看到高亮的代码了(千万不要告诉我你不知道css应该放在什么位置)

Posted in 未分类

发表评论