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


Python Theme.init_themes方法代码示例

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


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

示例1: init_templates

# 需要导入模块: from sphinx.theming import Theme [as 别名]
# 或者: from sphinx.theming.Theme import init_themes [as 别名]
 def init_templates(self):
     Theme.init_themes(self)
     themename, themeoptions = self.get_theme_config()
     self.theme = Theme(themename)
     self.theme_options = themeoptions.copy()
     self.create_template_bridge()
     self.templates.init(self, self.theme)
开发者ID:ZoomQuiet,项目名称:python-doc-translation,代码行数:9,代码来源:html.py

示例2: init_templates

# 需要导入模块: from sphinx.theming import Theme [as 别名]
# 或者: from sphinx.theming.Theme import init_themes [as 别名]
 def init_templates(self):
     Theme.init_themes(self.confdir, self.config.html_theme_path, warn=self.warn)
     themename, themeoptions = self.get_theme_config()
     self.theme = Theme(themename)
     self.theme_options = themeoptions.copy()
     self.create_template_bridge()
     self.templates.init(self, self.theme)
开发者ID:ymarfoq,项目名称:outilACVDesagregation,代码行数:9,代码来源:html.py

示例3: init

# 需要导入模块: from sphinx.theming import Theme [as 别名]
# 或者: from sphinx.theming.Theme import init_themes [as 别名]
 def init(self):
     # type: () -> None
     self.create_template_bridge()
     Theme.init_themes(self.confdir, self.config.html_theme_path,
                       warn=self.warn)
     self.theme = Theme('default')
     self.templates.init(self, self.theme)
开发者ID:JelteF,项目名称:sphinx,代码行数:9,代码来源:changes.py

示例4: init_templates

# 需要导入模块: from sphinx.theming import Theme [as 别名]
# 或者: from sphinx.theming.Theme import init_themes [as 别名]
    def init_templates(self):
        Theme.init_themes(self.confdir, self.get_builtin_theme_dirs() + self.config.slide_theme_path, warn=self.warn)
        themename, themeoptions = self.get_theme_config()

        self.create_template_bridge()
        self._theme_stack = []
        self._additional_themes = []

        self.theme = self.theme_options = None
        self.apply_theme(themename, themeoptions)
开发者ID:harrisonfeng,项目名称:hieroglyph,代码行数:12,代码来源:builder.py

示例5: init_templates

# 需要导入模块: from sphinx.theming import Theme [as 别名]
# 或者: from sphinx.theming.Theme import init_themes [as 别名]
 def init_templates(self):
     Theme.init_themes(self)
     self.theme = Theme(self.config.html_theme)
     self.create_template_bridge()
     self.templates.init(self, self.theme)
开发者ID:89sos98,项目名称:main,代码行数:7,代码来源:html.py

示例6: init

# 需要导入模块: from sphinx.theming import Theme [as 别名]
# 或者: from sphinx.theming.Theme import init_themes [as 别名]
 def init(self):
     self.create_template_bridge()
     Theme.init_themes(self)
     self.theme = Theme('default')
     self.templates.init(self, self.theme)
开发者ID:89sos98,项目名称:main,代码行数:7,代码来源:changes.py

示例7: init

# 需要导入模块: from sphinx.theming import Theme [as 别名]
# 或者: from sphinx.theming.Theme import init_themes [as 别名]
 def init(self):
     self.create_template_bridge()
     Theme.init_themes(self.confdir, self.config.html_theme_path, warn=self.warn)
     self.theme = Theme("default")
     self.templates.init(self, self.theme)
开发者ID:ymarfoq,项目名称:outilACVDesagregation,代码行数:7,代码来源:changes.py


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