-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathconf.py
More file actions
41 lines (33 loc) · 1.17 KB
/
conf.py
File metadata and controls
41 lines (33 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
# General options
needs_sphinx = '1.0'
add_function_parentheses = True
extensions = ['myst_parser', 'sphinx.ext.autodoc', 'sphinx.ext.autosectionlabel', 'sphinx.ext.extlinks', 'sphinx-prompt', 'sphinx_substitution_extensions', 'sphinx_inline_tabs', 'pygments.sphinxext', ]
issues_github_path = "JSQLParser/JSqlParser"
source_encoding = 'utf-8-sig'
#pygments_style = 'friendly'
show_sphinx = False
master_doc = 'index'
exclude_patterns = ['_themes', '_static/css']
logo_only = True
# HTML options
html_theme = "furo"
html_theme_path = ["_themes"]
html_short_title = "JSQLParser"
htmlhelp_basename = "JSQLParser" + '-doc'
html_use_index = True
html_show_sourcelink = False
html_static_path = ['_static']
html_logo = '_images/logo-no-background.svg'
html_favicon = '_images/favicon.svg'
html_css_files = ['svg.css', 'floating_toc.css']
html_js_files = ['floating_toc.js',]
html_theme_options = {
'path_to_docs': 'site/sphinx',
'repository_url': 'https://github.com/JSQLParser/JSqlParser',
'repository_branch': 'master',
'use_issues_button': True,
'use_download_button': True,
'use_fullscreen_button': True,
'use_repository_button': True,
}