# Configuration file for the Sphinx documentation builder. # https://www.sphinx-doc.org/en/master/usage/configuration.html project = 'shaarli' author = 'shaarli community' version = '0.12.2' release = '0.12.2' copyright = '2011-2023, the shaarli community' language = 'en' html_title = 'Shaarli documentation' html_theme = 'furo' html_show_sphinx = False html_show_search_summary = True html_copy_source = False html_show_copyright = True html_use_opensearch = 'https://shaarli.readthedocs.io/' html_logo = 'md/images/doc-logo.svg' html_favicon = 'md/images/icon.png' extensions = ['myst_parser', 'sphinx_design'] source_suffix = ['.md'] templates_path = ['_templates'] exclude_patterns = [] suppress_warnings = ["myst.xref_missing"] # myst-parser configuration (https://myst-parser.readthedocs.io/en/latest/configuration.html) myst_enable_extensions = ['fieldlist'] myst_html_meta = { "description lang=en": "The personal, minimalist, super fast, database-free bookmarking service", "charset": "UTF-8" } # theme configuration (https://pradyunsg.me/furo/customisation/) html_theme_options = { "top_of_page_button": None, # "announcement": "Example announcement!" "source_repository": "https://github.com/shaarli/shaarli", "source_branch": "master", "footer_icons": [ { "name": "GitHub", "url": "https://github.com/shaarli/shaarli", "html": """ """, "class": "", }, ] }