Skip to content
Snippets Groups Projects
conf.py 350 B
Newer Older
  • Learn to ignore specific revisions
  • Marco Del Tufo's avatar
    Marco Del Tufo committed
    html_theme = "sphinx_rtd_theme"
    #html_theme = 'default'
    
    Marco Del Tufo's avatar
    Marco Del Tufo committed
    html_static_path = ['_static']
    html_logo = "img/openBIS.png"
    html_theme_options = {
            'logo_only': True,
            'display_version': False,
    }
    
    Marco Del Tufo's avatar
    Marco Del Tufo committed
    exclude_patterns = ['README.md']
    
    Marco Del Tufo's avatar
    Marco Del Tufo committed
    extensions = ['myst_parser']
    
    Marco Del Tufo's avatar
    Marco Del Tufo committed
    source_suffix = ['.rst', '.md']
    
    Marco Del Tufo's avatar
    Marco Del Tufo committed
    def setup(app):
        app.add_css_file('my_theme.css')