当前位置: 首页 > 工具软件 > Pygments > 使用案例 >

pygments高亮代码

越骏俊
2023-12-01

安装

pip install pygmentize

生成css文件

pygmentize -f html -a .highlight -S default > highlight.css

-a .highlight 设置css祖先选择器.highlight
-S default就是指定所需要的样式
最后结果输出到highlight.css中…

from pygments.styles import STYLE_MAP

for key in STYLE_MAP.keys():
    print(key)

支持的样式如下:

default
emacs
friendly
colorful
autumn
murphy
manni
monokai
perldoc
pastie
borland
trac
native
fruity
bw
vim
vs
tango
rrt
xcode
igor
paraiso-light
paraiso-dark
lovelace
algol
algol_nu
arduino
rainbow_dash
abap
 类似资料: