我在哪里可以找到Pygments CSS文件库[关闭]


Answers:



7

这是一个(不幸的是不是100%完整)的图库:http://help.farbox.com/pygments.html @CodeReaper在下面发布的网址也很好。



1

我从来没有找到一个包含pygments风格的全包“画廊”。在大多数情况下,内置组件实际上是可用的。

要查看环境中可用的内容,请在Python shell中运行以下命令:

>>> from pygments.styles import get_all_styles
>>> styles = list(get_all_styles())

除此之外,我会尝试搜索通常可疑的代码托管网站:Github / Gist,Bitbucket,谷歌代码等。我在那里发现了一些如Twilight,Solarized和Moria。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.