本文整理汇总了Python中pygments.formatters.html.HtmlFormatter.replace方法的典型用法代码示例。如果您正苦于以下问题:Python HtmlFormatter.replace方法的具体用法?Python HtmlFormatter.replace怎么用?Python HtmlFormatter.replace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pygments.formatters.html.HtmlFormatter
的用法示例。
在下文中一共展示了HtmlFormatter.replace方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: prepare_style
# 需要导入模块: from pygments.formatters.html import HtmlFormatter [as 别名]
# 或者: from pygments.formatters.html.HtmlFormatter import replace [as 别名]
def prepare_style():
""" read and process style/ directory """
config = Config()
# copy static files
if not os.path.exists(os.path.join(config.outputdir, 'style')):
os.makedirs(os.path.join(config.outputdir, 'style'))
# copy supplementary files to ouput dir
for filename in os.listdir(config.styledir):
if os.path.splitext(filename)[1].lower() != '.css':
shutil.copy(
os.path.join(config.styledir, filename),
os.path.join(config.outputdir, 'style')
)
# generate syntax highlight css and append all other CSS files
allcss = HtmlFormatter().get_style_defs('.codehilite')
for cssfile in glob.iglob(os.path.join(config.styledir, '*.css')):
allcss = allcss + codecs.open(cssfile, 'r', 'utf-8').read()
allcss = allcss.replace('{{styleurl}}', "{}style/".format(config.blogurl))
# minimise css
return cssmin(allcss, wrap=1000)