Skip to content

Commit ffef741

Browse files
authored
Merge pull request #12 from enthought/fix/search-for-sphinx-3
Add missing variable definition needed for search on Sphinx 3
2 parents 2409abd + a8cfcd0 commit ffef741

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGES.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Enthought Sphinx Theme changelog
22
================================
33

4+
Release 0.6.2
5+
-------------
6+
7+
Release date: 2020-04-29
8+
9+
Fixes
10+
11+
* More search functionality fixes. (#12)
12+
413
Release 0.6.1
514
-------------
615

enthought_sphinx_theme/enthought/layout.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@
9797
VERSION: '{{ release|e }}',
9898
COLLAPSE_INDEX: false,
9999
FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}',
100+
LINK_SUFFIX: '{{ link_suffix }}',
101+
SOURCELINK_SUFFIX: '{{ sourcelink_suffix }}',
100102
HAS_SOURCE: {{ has_source|lower }}
101103
};
102104
</script>
@@ -212,7 +214,7 @@
212214
{% endif %}
213215
{%- block document %}
214216
<div class="bodywrapper">
215-
<div class="body" id="spc-section-body">
217+
<div class="body" id="spc-section-body" role="main">
216218
{% block body %} {% endblock %}
217219
</div>
218220
</div>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='enthought_sphinx_theme',
12-
version='0.6.1',
12+
version='0.6.2',
1313
author='Enthought, Inc.',
1414
author_email='[email protected]',
1515
description='Sphinx theme for Enthought products',

0 commit comments

Comments
 (0)