Jekyll搭建博客实现代码高亮

###内容包括 * 安装 * 配置 * 使用 * 样式

假设已经成功运行了jekyll等 ###安装 Mac:

###配置

###使用

	hello world!
	

###Pygments样式

####查看样式 先通过终端进入pygments所在目录 打开python

cd workspace/pygments/
python

通过以下命令查看当前pygments支持的代码高亮样式

>>> from pygments.styles import STYLE_MAP
>>> STYLE_MAP.keys()
'manni', 'igor', 'xcode', 'vim', 'autumn', 'vs', 'rrt', 'native', 'perldoc', 'borland', 'tango', 'emacs', 'friendly', 'monokai', 'paraiso-dark', 'colorful', 'murphy', 'bw', 'pastie', 'paraiso-light', 'trac', 'default', 'fruity']

然后通过以下命令生成你想要的样式文件

$ pygmentize -S monokai -f html > pygments.css

其中monokai是你选择的样式

    原文作者:mxn原创
    原文地址: http://souly.cn/%E6%8A%80%E6%9C%AF%E5%8D%9A%E6%96%87/2014/12/15/%E4%BB%A3%E7%A0%81%E9%AB%98%E4%BA%AE/
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞