├── .editorconfig ├── .gitignore ├── LICENSE.txt ├── README.rst ├── docs-source ├── conf.py ├── contributing.rst ├── customize.rst ├── design-notes.rst ├── index.rst ├── installation.rst └── sample.rst ├── docs ├── .nojekyll ├── _sources │ ├── contributing.rst.txt │ ├── customize.rst.txt │ ├── design-notes.rst.txt │ ├── index.rst.txt │ ├── installation.rst.txt │ └── sample.rst.txt ├── _static │ ├── basic.css │ ├── custom.css │ ├── doctools.js │ ├── documentation_options.js │ ├── file.png │ ├── jquery-3.5.1.js │ ├── jquery.js │ ├── language_data.js │ ├── library │ │ ├── library.css │ │ ├── type-academy-native.css │ │ ├── type-academy.css │ │ ├── type-book-native.css │ │ ├── type-book.css │ │ ├── type-engineer-native.css │ │ ├── type-engineer.css │ │ ├── type-humanist-native.css │ │ ├── type-humanist.css │ │ ├── type-swiss-native.css │ │ └── type-swiss.css │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── sphinx_highlight.js │ ├── underscore-1.3.1.js │ └── underscore.js ├── contributing.html ├── customize.html ├── design-notes.html ├── genindex.html ├── index.html ├── installation.html ├── objects.inv ├── sample.html ├── search.html └── searchindex.js ├── pyproject.toml ├── requirements-dev.txt └── sphinx_library ├── __init__.py ├── about.html ├── extralinks.html ├── globaltoc.html ├── layout.html ├── localtoc.html ├── readingmodes.html ├── scss ├── _fonts.scss ├── _mode-dark.scss ├── _mode-light.scss ├── _mode-sepia.scss ├── _pygments-dark.scss ├── _pygments-light.scss ├── library.scss ├── pygments.scss ├── type-academy-native.scss ├── type-academy.scss ├── type-book-native.scss ├── type-book.scss ├── type-engineer-native.scss ├── type-engineer.scss ├── type-humanist-native.scss ├── type-humanist.scss ├── type-swiss-native.scss └── type-swiss.scss ├── sponsors.html ├── static ├── custom.css ├── library │ ├── library.css │ ├── type-academy-native.css │ ├── type-academy.css │ ├── type-book-native.css │ ├── type-book.css │ ├── type-engineer-native.css │ ├── type-engineer.css │ ├── type-humanist-native.css │ ├── type-humanist.css │ ├── type-swiss-native.css │ └── type-swiss.css └── pygments.css ├── theme.conf └── theme.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/README.rst -------------------------------------------------------------------------------- /docs-source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs-source/conf.py -------------------------------------------------------------------------------- /docs-source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs-source/contributing.rst -------------------------------------------------------------------------------- /docs-source/customize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs-source/customize.rst -------------------------------------------------------------------------------- /docs-source/design-notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs-source/design-notes.rst -------------------------------------------------------------------------------- /docs-source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs-source/index.rst -------------------------------------------------------------------------------- /docs-source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs-source/installation.rst -------------------------------------------------------------------------------- /docs-source/sample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs-source/sample.rst -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_sources/contributing.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_sources/contributing.rst.txt -------------------------------------------------------------------------------- /docs/_sources/customize.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_sources/customize.rst.txt -------------------------------------------------------------------------------- /docs/_sources/design-notes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_sources/design-notes.rst.txt -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/installation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_sources/installation.rst.txt -------------------------------------------------------------------------------- /docs/_sources/sample.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_sources/sample.rst.txt -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* Intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/library/library.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/library/library.css -------------------------------------------------------------------------------- /docs/_static/library/type-academy-native.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/library/type-academy-native.css -------------------------------------------------------------------------------- /docs/_static/library/type-academy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/library/type-academy.css -------------------------------------------------------------------------------- /docs/_static/library/type-book-native.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/library/type-book-native.css -------------------------------------------------------------------------------- /docs/_static/library/type-book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/library/type-book.css -------------------------------------------------------------------------------- /docs/_static/library/type-engineer-native.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/library/type-engineer-native.css -------------------------------------------------------------------------------- /docs/_static/library/type-engineer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/library/type-engineer.css -------------------------------------------------------------------------------- /docs/_static/library/type-humanist-native.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/library/type-humanist-native.css -------------------------------------------------------------------------------- /docs/_static/library/type-humanist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/library/type-humanist.css -------------------------------------------------------------------------------- /docs/_static/library/type-swiss-native.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/library/type-swiss-native.css -------------------------------------------------------------------------------- /docs/_static/library/type-swiss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/library/type-swiss.css -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/contributing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/contributing.html -------------------------------------------------------------------------------- /docs/customize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/customize.html -------------------------------------------------------------------------------- /docs/design-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/design-notes.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/installation.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/sample.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | 3 | build 4 | libsass 5 | ruff 6 | sphinx 7 | twine 8 | wheel 9 | -------------------------------------------------------------------------------- /sphinx_library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/__init__.py -------------------------------------------------------------------------------- /sphinx_library/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/about.html -------------------------------------------------------------------------------- /sphinx_library/extralinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/extralinks.html -------------------------------------------------------------------------------- /sphinx_library/globaltoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/globaltoc.html -------------------------------------------------------------------------------- /sphinx_library/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/layout.html -------------------------------------------------------------------------------- /sphinx_library/localtoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/localtoc.html -------------------------------------------------------------------------------- /sphinx_library/readingmodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/readingmodes.html -------------------------------------------------------------------------------- /sphinx_library/scss/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/_fonts.scss -------------------------------------------------------------------------------- /sphinx_library/scss/_mode-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/_mode-dark.scss -------------------------------------------------------------------------------- /sphinx_library/scss/_mode-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/_mode-light.scss -------------------------------------------------------------------------------- /sphinx_library/scss/_mode-sepia.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/_mode-sepia.scss -------------------------------------------------------------------------------- /sphinx_library/scss/_pygments-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/_pygments-dark.scss -------------------------------------------------------------------------------- /sphinx_library/scss/_pygments-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/_pygments-light.scss -------------------------------------------------------------------------------- /sphinx_library/scss/library.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/library.scss -------------------------------------------------------------------------------- /sphinx_library/scss/pygments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/pygments.scss -------------------------------------------------------------------------------- /sphinx_library/scss/type-academy-native.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/type-academy-native.scss -------------------------------------------------------------------------------- /sphinx_library/scss/type-academy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/type-academy.scss -------------------------------------------------------------------------------- /sphinx_library/scss/type-book-native.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/type-book-native.scss -------------------------------------------------------------------------------- /sphinx_library/scss/type-book.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/type-book.scss -------------------------------------------------------------------------------- /sphinx_library/scss/type-engineer-native.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/type-engineer-native.scss -------------------------------------------------------------------------------- /sphinx_library/scss/type-engineer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/type-engineer.scss -------------------------------------------------------------------------------- /sphinx_library/scss/type-humanist-native.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/type-humanist-native.scss -------------------------------------------------------------------------------- /sphinx_library/scss/type-humanist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/type-humanist.scss -------------------------------------------------------------------------------- /sphinx_library/scss/type-swiss-native.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/type-swiss-native.scss -------------------------------------------------------------------------------- /sphinx_library/scss/type-swiss.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/scss/type-swiss.scss -------------------------------------------------------------------------------- /sphinx_library/sponsors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/sponsors.html -------------------------------------------------------------------------------- /sphinx_library/static/custom.css: -------------------------------------------------------------------------------- 1 | /* Intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /sphinx_library/static/library/library.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/library/library.css -------------------------------------------------------------------------------- /sphinx_library/static/library/type-academy-native.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/library/type-academy-native.css -------------------------------------------------------------------------------- /sphinx_library/static/library/type-academy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/library/type-academy.css -------------------------------------------------------------------------------- /sphinx_library/static/library/type-book-native.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/library/type-book-native.css -------------------------------------------------------------------------------- /sphinx_library/static/library/type-book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/library/type-book.css -------------------------------------------------------------------------------- /sphinx_library/static/library/type-engineer-native.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/library/type-engineer-native.css -------------------------------------------------------------------------------- /sphinx_library/static/library/type-engineer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/library/type-engineer.css -------------------------------------------------------------------------------- /sphinx_library/static/library/type-humanist-native.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/library/type-humanist-native.css -------------------------------------------------------------------------------- /sphinx_library/static/library/type-humanist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/library/type-humanist.css -------------------------------------------------------------------------------- /sphinx_library/static/library/type-swiss-native.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/library/type-swiss-native.css -------------------------------------------------------------------------------- /sphinx_library/static/library/type-swiss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/library/type-swiss.css -------------------------------------------------------------------------------- /sphinx_library/static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/static/pygments.css -------------------------------------------------------------------------------- /sphinx_library/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/theme.conf -------------------------------------------------------------------------------- /sphinx_library/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsalvino/sphinx-library/HEAD/sphinx_library/theme.py --------------------------------------------------------------------------------