当前位置: 首页>>代码示例>>Python>>正文


Python StandaloneHTMLBuilder.write_doc方法代码示例

本文整理汇总了Python中sphinx.builders.html.StandaloneHTMLBuilder.write_doc方法的典型用法代码示例。如果您正苦于以下问题:Python StandaloneHTMLBuilder.write_doc方法的具体用法?Python StandaloneHTMLBuilder.write_doc怎么用?Python StandaloneHTMLBuilder.write_doc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sphinx.builders.html.StandaloneHTMLBuilder的用法示例。


在下文中一共展示了StandaloneHTMLBuilder.write_doc方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: write_doc

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import write_doc [as 别名]
    def write_doc(self, docname, doctree):
        for node in doctree.traverse(nodes.reference):
            # add ``target=_blank`` attributes to external links
            if node.get('internal') is None and 'refuri' in node:
                node['target'] = '_blank'

        StandaloneHTMLBuilder.write_doc(self, docname, doctree)
开发者ID:Felix-neko,项目名称:sphinx,代码行数:9,代码来源:htmlhelp.py

示例2: write_doc

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import write_doc [as 别名]
    def write_doc(self, docname, doctree):
        # type: (unicode, nodes.Node) -> None
        """Write one document file.

        This method is overwritten in order to fix fragment identifiers
        and to add visible external links.
        """
        self.fix_ids(doctree)
        self.add_visible_links(doctree, self.config.epub_show_urls)
        StandaloneHTMLBuilder.write_doc(self, docname, doctree)
开发者ID:LFYG,项目名称:sphinx,代码行数:12,代码来源:_epub_base.py

示例3: write_doc

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import write_doc [as 别名]
 def write_doc(self, docname, doctree):
     """Write one document file.
     This method is overwritten in order to fix fragment identifiers
     and to add visible external links.
     """
     self.fix_ids(doctree)
     self.add_visible_links(doctree)
     return StandaloneHTMLBuilder.write_doc(self, docname, doctree)
开发者ID:simonwex,项目名称:betafarm,代码行数:10,代码来源:epub.py

示例4: write_doc

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import write_doc [as 别名]
 def write_doc(self, docname, doctree):
     mathjax.counter = mathjax.ExpressionNumbers()
     StandaloneHTMLBuilder.write_doc(self, docname, doctree)
开发者ID:nnabeyang,项目名称:hooktail_docs,代码行数:5,代码来源:hooktail.py


注:本文中的sphinx.builders.html.StandaloneHTMLBuilder.write_doc方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。