summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-html_assets/conf.py
blob: 7f94bbbce732ea4425f067bba014a2c10d0c932a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
project = 'Sphinx'
version = '1.4.4'

html_static_path = ['static', 'subdir']
html_extra_path = ['extra', 'subdir']
html_css_files = ['css/style.css',
                  ('https://example.com/custom.css',
                   {'title': 'title', 'media': 'print', 'priority': 400})]
html_js_files = ['js/custom.js',
                 ('https://example.com/script.js',
                  {'async': 'async', 'priority': 400})]
exclude_patterns = ['**/_build', '**/.htpasswd']