mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
27 lines
725 B
Python
27 lines
725 B
Python
#!/usr/bin/env python3
|
|
project = 'YosysHQ SBY'
|
|
author = 'YosysHQ GmbH'
|
|
copyright ='2021 YosysHQ GmbH'
|
|
|
|
# select HTML theme
|
|
html_theme = 'press'
|
|
html_logo = '../static/logo.png'
|
|
html_favicon = '../static/favico.png'
|
|
html_css_files = ['yosyshq.css']
|
|
html_sidebars = {'**': ['util/searchbox.html', 'util/sidetoc.html']}
|
|
|
|
# These folders are copied to the documentation's HTML output
|
|
html_static_path = ['../static', "../images"]
|
|
|
|
# code blocks style
|
|
pygments_style = 'colorful'
|
|
highlight_language = 'systemverilog'
|
|
|
|
html_theme_options = {
|
|
'external_links' : [
|
|
('YosysHQ Docs', 'https://yosyshq.readthedocs.io'),
|
|
('Blog', 'https://blog.yosyshq.com'),
|
|
('Website', 'https://www.yosyshq.com'),
|
|
],
|
|
}
|