sphinx-filter-tabs 0.8.0__py3-none-any.whl → 1.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- filter_tabs/extension.py +334 -300
- filter_tabs/renderer.py +261 -0
- filter_tabs/static/filter_tabs.css +139 -62
- filter_tabs/static/filter_tabs.js +160 -0
- {sphinx_filter_tabs-0.8.0.dist-info → sphinx_filter_tabs-1.2.0.dist-info}/METADATA +14 -5
- sphinx_filter_tabs-1.2.0.dist-info/RECORD +11 -0
- sphinx_filter_tabs-0.8.0.dist-info/RECORD +0 -9
- {sphinx_filter_tabs-0.8.0.dist-info → sphinx_filter_tabs-1.2.0.dist-info}/WHEEL +0 -0
- {sphinx_filter_tabs-0.8.0.dist-info → sphinx_filter_tabs-1.2.0.dist-info}/entry_points.txt +0 -0
- {sphinx_filter_tabs-0.8.0.dist-info → sphinx_filter_tabs-1.2.0.dist-info}/licenses/LICENSE +0 -0
- {sphinx_filter_tabs-0.8.0.dist-info → sphinx_filter_tabs-1.2.0.dist-info}/top_level.txt +0 -0
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sphinx-filter-tabs
|
|
3
|
-
Version:
|
|
4
|
-
Summary: A Sphinx extension for accessible,
|
|
3
|
+
Version: 1.2.0
|
|
4
|
+
Summary: A Sphinx extension for accessible, CSS-first filterable content tabs.
|
|
5
5
|
Author-email: Aputsiak Niels Janussen <aputsiak+sphinx@gmail.com>
|
|
6
6
|
License: GNU General Public License v3.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/aputtu/sphinx-filter-tabs
|
|
8
8
|
Project-URL: Repository, https://github.com/aputtu/sphinx-filter-tabs.git
|
|
9
9
|
Project-URL: Issues, https://github.com/aputtu/sphinx-filter-tabs/issues
|
|
10
|
-
Keywords: sphinx,extension,tabs,filter,documentation,
|
|
11
|
-
Classifier: Development Status ::
|
|
10
|
+
Keywords: sphinx,extension,tabs,filter,documentation,css-only,accessibility,keyboard-navigation
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: Framework :: Sphinx :: Extension
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
14
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
19
|
Classifier: Topic :: Documentation :: Sphinx
|
|
20
20
|
Classifier: Topic :: Software Development :: Documentation
|
|
@@ -26,6 +26,13 @@ Dynamic: license-file
|
|
|
26
26
|
|
|
27
27
|
# Sphinx Filter Tabs Extension
|
|
28
28
|
|
|
29
|
+
[](https://github.com/aputtu/sphinx-filter-tabs/actions/workflows/test.yml)
|
|
30
|
+
[](https://pypi.org/project/sphinx-filter-tabs/)
|
|
31
|
+
[](https://pypi.org/project/sphinx-filter-tabs/)
|
|
32
|
+
[](https://github.com/aputtu/sphinx-filter-tabs/blob/main/LICENSE)
|
|
33
|
+
|
|
34
|
+
A robust Sphinx extension for creating accessible, JavaScript-free, filterable content tabs.
|
|
35
|
+
|
|
29
36
|
A robust Sphinx extension for creating accessible, JavaScript-free, filterable content tabs.
|
|
30
37
|
|
|
31
38
|
**📖 View extension and documentation at: https://aputtu.github.io/sphinx-filter-tabs/**
|
|
@@ -60,4 +67,6 @@ Command to enter venv is provided.
|
|
|
60
67
|
```bash
|
|
61
68
|
pytest # Runs test suite on configured version of Sphinx.
|
|
62
69
|
tox # Check across multiple Sphinx versions. Manual install of tox required.
|
|
70
|
+
./scripts/export-project.sh # Outputs directory structure and code to txt
|
|
71
|
+
./dev.sh [options] # Allows for faster generation for html, pdf, clean up
|
|
63
72
|
```
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
filter_tabs/__init__.py,sha256=VPpIhj4HaLeMX7ai7dZFkUm81ii2ePPGjCd9hsMjsN4,397
|
|
2
|
+
filter_tabs/extension.py,sha256=Dspt9r8TVoYChHFvGsncuV01GEga7BOOsPaMwYdMQcg,18014
|
|
3
|
+
filter_tabs/renderer.py,sha256=e_nUV67ojDHfEXWB7jFkclzy4fOLotluKBg573fGng8,10436
|
|
4
|
+
filter_tabs/static/filter_tabs.css,sha256=a2oj4E--r2zv4JfNhEWYqbpAeQRHSS1mA0mGFi4bviQ,3929
|
|
5
|
+
filter_tabs/static/filter_tabs.js,sha256=-d_TJREyNxu9TtQNDLvQ0G5qCVWR2TxwrWmApGs2CBo,6559
|
|
6
|
+
sphinx_filter_tabs-1.2.0.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
7
|
+
sphinx_filter_tabs-1.2.0.dist-info/METADATA,sha256=rzeejykvI9_0R53RMpuhe9Ewht3r4F4uSQfppC6tCY4,3579
|
|
8
|
+
sphinx_filter_tabs-1.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
9
|
+
sphinx_filter_tabs-1.2.0.dist-info/entry_points.txt,sha256=za_bQcueY8AHyq7XnnjkW9X3C-LsZjeERVQ_ds7jV1A,62
|
|
10
|
+
sphinx_filter_tabs-1.2.0.dist-info/top_level.txt,sha256=K0Iy-6EsYYdvlyXdsJT0SQg-BLDBgT5-Y8ZKy5SNAfc,12
|
|
11
|
+
sphinx_filter_tabs-1.2.0.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
filter_tabs/__init__.py,sha256=VPpIhj4HaLeMX7ai7dZFkUm81ii2ePPGjCd9hsMjsN4,397
|
|
2
|
-
filter_tabs/extension.py,sha256=K7w7iRN72PGVvswDuULBxxxam4zvPF1ZulsAxeHlvz8,20937
|
|
3
|
-
filter_tabs/static/filter_tabs.css,sha256=gXQk2ceyjAj9p3G_k-mrcPdxq0ggIXSMuXHyUE5mPP0,3486
|
|
4
|
-
sphinx_filter_tabs-0.8.0.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
5
|
-
sphinx_filter_tabs-0.8.0.dist-info/METADATA,sha256=SjLifkJnouYp8U4_te9JgpPtELGgQcaaeXEXoGRSCkU,2705
|
|
6
|
-
sphinx_filter_tabs-0.8.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
-
sphinx_filter_tabs-0.8.0.dist-info/entry_points.txt,sha256=za_bQcueY8AHyq7XnnjkW9X3C-LsZjeERVQ_ds7jV1A,62
|
|
8
|
-
sphinx_filter_tabs-0.8.0.dist-info/top_level.txt,sha256=K0Iy-6EsYYdvlyXdsJT0SQg-BLDBgT5-Y8ZKy5SNAfc,12
|
|
9
|
-
sphinx_filter_tabs-0.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|