美文网首页
Sphinx配置conf.py文件

Sphinx配置conf.py文件

作者: 零零兔 | 来源:发表于2019-05-31 19:54 被阅读0次

Options for HTML output

  • 设置 Logo

    向conf.py中添加:

     # Html logo in drawer.
     # Fit in the drawer at the width of image is 240 px.
    html_logo = '_static/logo.png'
    

    注意:Logo静态png图片存储在source/static目录中。

    效果如图:

    Image 2.png
  • 页面布局

    向conf.py中添加:

    html_last_updated_fmt = '%b %d, %Y'
    html_domain_indices = True
    html_theme_path = ['mxtheme']
    html_theme = 'sphinx_materialdesign_theme'
    

    效果如图:

    Image 5.png

    添加另一模板:

html_last_updated_fmt = '%b %d, %Y'
html_domain_indices = True
html_theme_path = ['mxtheme']
html_theme = 'sphinx_materialdesign_theme'


html_use_index = True
html_show_sphinx = True

效果如图:

Image 8.png
  • 目录页需要修改index.rst,效果如图:
Image 9.png

添加如下内容:

html_theme_options = {
    # Specify a list of menu in Header.
    # Tuples forms:
    #  ('Name', 'external url or path of pages in the document', boolean, 'icon name')
    #
    # Third argument:
    # True indicates an external link.
    # False indicates path of pages in the document.
    #
    # Fourth argument:
    # Specify the icon name.
    # For details see link.
    # https://material.io/icons/
    'header_links' : [
        ('Home', 'contents', False, 'home'),
        ("A Company", "https://www.horizon.ai/?lang=en-US", True, 'launch'),
        ('Contact Us', "mailto:bd@horizon.ai", True, 'email')
    ],

    # Customize css colors.
    # For details see link.
    # https://getmdl.io/customize/index.html
    #
    # Values: amber, blue, brown, cyan deep_orange, deep_purple, green, grey, indigo, light_blue,
    #         light_green, lime, orange, pink, purple, red, teal, yellow(Default: indigo)
    'primary_color': 'indigo',
    # Values: Same as primary_color. (Default: pink)
    'accent_color': 'red',

    # Customize layout.
    # For details see link.
    # https://getmdl.io/components/index.html#layout-section
    'fixed_drawer': True,
    'fixed_header': True,
    'header_waterfall': True,
    'header_scroll': True,

    # Render title in header.
    # Values: True, False (Default: False)
    'show_header_title': False,
    # Render title in drawer.
    # Values: True, False (Default: True)
    'show_drawer_title': True,
    # Render footer.
    # Values: True, False (Default: True)
    'show_footer': False
}

效果如下:

Image 15.png

相关文章

网友评论

      本文标题:Sphinx配置conf.py文件

      本文链接:https://www.haomeiwen.com/subject/vwngtctx.html