本文整理汇总了Python中traitlets.config.Config.HtmlLinksPreprocessor['enabled']方法的典型用法代码示例。如果您正苦于以下问题:Python Config.HtmlLinksPreprocessor['enabled']方法的具体用法?Python Config.HtmlLinksPreprocessor['enabled']怎么用?Python Config.HtmlLinksPreprocessor['enabled']使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类traitlets.config.Config
的用法示例。
在下文中一共展示了Config.HtmlLinksPreprocessor['enabled']方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_html_from_filepath
# 需要导入模块: from traitlets.config import Config [as 别名]
# 或者: from traitlets.config.Config import HtmlLinksPreprocessor['enabled'] [as 别名]
def get_html_from_filepath(filepath):
"""Convert ipython notebook to html
Return: html content of the converted notebook
"""
config = Config({'CSSHTMLHeaderTransformer': {'enabled': True,
'highlight_class': '.highlight-ipynb'}})
config.HTMLExporter.preprocessors = [HtmlLinksPreprocessor]
config.HtmlLinksPreprocessor['enabled'] = True
path = os.path.dirname(os.path.realpath(__file__))
exporter = HTMLExporter(config=config, template_file='no_code',
template_path=['.', path + '/../../../scripts/'],
filters={'highlight2html': custom_highlighter})
content, info = exporter.from_filename(filepath)
return content, info