documenteer 1.2.2__tar.gz → 1.4.0__tar.gz
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.
- {documenteer-1.2.2 → documenteer-1.4.0}/.pre-commit-config.yaml +3 -3
- {documenteer-1.2.2 → documenteer-1.4.0}/CHANGELOG.md +30 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/PKG-INFO +5 -2
- documenteer-1.4.0/demo/ipynb-technote/index.ipynb +97 -0
- documenteer-1.4.0/demo/ipynb-technote/subdir/subdir-notebook.ipynb +97 -0
- documenteer-1.4.0/demo/md-technote/index.md +203 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/rst-technote/index.rst +1 -1
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/changelog.md +30 -0
- documenteer-1.4.0/docs/conf.py +3 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/documenteer.toml +9 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/index.rst +2 -0
- documenteer-1.4.0/docs/guides/page-redirects.rst +42 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/toml-reference.rst +17 -0
- documenteer-1.4.0/docs/guides/video-embeds.rst +60 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/index.rst +6 -0
- documenteer-1.4.0/docs/technotes/wide-content.rst +145 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/pyproject.toml +6 -2
- {documenteer-1.2.2 → documenteer-1.4.0}/src/assets/rubin-technote/styles/_hacks.scss +3 -13
- {documenteer-1.2.2 → documenteer-1.4.0}/src/assets/rubin-technote/styles/components/_article-header.scss +2 -2
- {documenteer-1.2.2 → documenteer-1.4.0}/src/assets/rubin-technote/styles/components/_authors.scss +1 -1
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/rubin-technote.css +6 -14
- documenteer-1.4.0/src/documenteer/assets/rubin-technote.css.map +1 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/conf/__init__.py +2 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/conf/_toml.py +16 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/conf/_utils.py +34 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/conf/guide.py +2 -1
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/conf/technote.py +7 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/githubbibcache.py +2 -2
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/lssttasks/pyapisummary.py +6 -1
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer.egg-info/PKG-INFO +5 -2
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer.egg-info/SOURCES.txt +5 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer.egg-info/requires.txt +4 -1
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/test_conf_utils.py +20 -1
- documenteer-1.2.2/demo/md-technote/index.md +0 -73
- documenteer-1.2.2/docs/conf.py +0 -13
- documenteer-1.2.2/src/documenteer/assets/rubin-technote.css.map +0 -1
- {documenteer-1.2.2 → documenteer-1.4.0}/.flake8 +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.github/CODE_OF_CONDUCT.md +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.github/CONTRIBUTING.md +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.github/SUPPORT.md +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.github/dependabot.yml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.github/workflows/ci-cron.yaml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.github/workflows/ci.yaml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.github/workflows/dependencies.yaml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.gitignore +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.npmrc +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.nvmrc +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.prettierignore +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.prettierrc.yaml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.vscode/settings.json +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/.vscode/tasks.json +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/LICENSE +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/MANIFEST.in +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/Makefile +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/README.md +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/changelog.d/_template.md.jinja +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/ipynb-technote/.gitignore +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/ipynb-technote/Makefile +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/ipynb-technote/conf.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/ipynb-technote/diagram.py +0 -0
- /documenteer-1.2.2/demo/ipynb-technote/index.ipynb → /documenteer-1.4.0/demo/ipynb-technote/extra-notebook.ipynb +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/ipynb-technote/technote.toml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/md-technote/.gitignore +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/md-technote/Makefile +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/md-technote/conf.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/md-technote/diagram.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/md-technote/technote.toml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/rst-technote/.gitignore +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/rst-technote/Makefile +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/rst-technote/conf.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/rst-technote/diagram.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/demo/rst-technote/technote.toml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/.gitignore +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/Makefile +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/_rst_epilog.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/api/documenteer.conf.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/api/documenteer.ext.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/api/documenteer.requestsutils.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/api/documenteer.sphinxrunner.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/api/documenteer.stackdocs.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/api/index.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/development.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/html-templates.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/index.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/release.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/theme-assets.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/dev/theme.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/badges.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/configuration-preset.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/configuration.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/diagrams.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/extend-conf-py.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/including-notebooks.ipynb +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/markdown-primer.md +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/openapi.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/organization.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/overview.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/pipelines/build-overview.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/pipelines/configuration.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/pipelines/cpp-api-linking.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/pipelines/index.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/pipelines/install.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/pipelines/package-docs-cli.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/pipelines/stack-docs-cli.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/pyproject-configuration.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/rst-epilog.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/guides/tabsets.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/index.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/sphinx-extensions/autocppapi.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/sphinx-extensions/autodocreset.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/sphinx-extensions/docushare-reference.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/sphinx-extensions/githubbibcache.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/sphinx-extensions/index.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/sphinx-extensions/jira-reference.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/sphinx-extensions/lsst-pybtex-style.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/sphinx-extensions/lssttasks.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/sphinx-extensions/openapi.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/sphinx-extensions/package-toctree.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/sphinx-extensions/remote-code-block.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/_templates/README.md +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/_templates/README.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/author-metadata.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/configuration.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/document-status.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/edit-locally.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/edit-on-github.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/extensions.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/how-your-technote-gets-published.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/migrate.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/docs/technotes/start-a-technote.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/licenses/README.md +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/licenses/astropy-helpers.txt +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/licenses/sphinx-issue.txt +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/licenses/sphinx.txt +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/package-lock.json +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/package.json +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/postcss.config.js +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/setup.cfg +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/assets/rubin-technote/styles/SourceSans3VF-Italic.ttf.woff2 +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/assets/rubin-technote/styles/SourceSans3VF-Upright.ttf.woff2 +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/assets/rubin-technote/styles/_properties.scss +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/assets/rubin-technote/styles/components/_global-breadcrumbs.scss +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/assets/rubin-technote/styles/components/_index.scss +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/assets/rubin-technote/styles/components/_sidebar-section.scss +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/assets/rubin-technote/styles/components/_version-info.scss +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/assets/rubin-technote/styles/rubin-technote.scss +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/__init__.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/.gitignore +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/731c8feefe13e72a8691.woff2 +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/b8bc3440ba2145e132f5.woff2 +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/favicon.ico +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/rsd-assets/rubin-imagotype-color-on-black-crop.svg +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/rsd-assets/rubin-imagotype-color-on-white-crop.svg +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/rubin-favicon-transparent-32px.png +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/rubin-favicon.svg +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/rubin-pydata-theme.css +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/rubin-titlebar-imagotype-dark.svg +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/rubin-titlebar-imagotype-light.svg +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/scripts/rubin-technote.js +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/assets/scripts/rubin-technote.js.map +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/cli.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/conf/pipelines.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/conf/pipelinespkg.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/__init__.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/_utils.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/autocppapi.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/autodocreset.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/bibtex.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/jira.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/lsstdocushare.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/lssttasks/__init__.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/lssttasks/configfieldlists.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/lssttasks/crossrefs.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/lssttasks/taskutils.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/lssttasks/topiclists.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/lssttasks/topics.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/mockcoderefs.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/openapi.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/packagetoctree.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/ext/remotecodeblock.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/packagemetadata.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/py.typed +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/requestsutils.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/services/__init__.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/services/technoteauthor.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/services/technotemigration.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/sphinxrunner.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/stackdocs/__init__.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/stackdocs/build.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/stackdocs/data/cppreference-doxygen-web.tag.xml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/stackdocs/data/doxygen.defaults.conf +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/stackdocs/data/mainpage.dox +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/stackdocs/doxygen.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/stackdocs/doxygentag.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/stackdocs/packagecli.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/stackdocs/pkgdiscovery.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/stackdocs/rootdiscovery.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/stackdocs/stackcli.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/__init__.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/authordb.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/latex.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/localtemplates/technote/Makefile +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/localtemplates/technote/README.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/localtemplates/technote/ci.yaml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/localtemplates/technote/conf.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/localtemplates/technote/dependabot.yml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/localtemplates/technote/gitignore +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/localtemplates/technote/pre-commit-config.yaml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/localtemplates/technote/requirements.txt +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/localtemplates/technote/tox.ini +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/localtemplates.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/storage/technotetoml.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/templates/pydata/layout.html +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/templates/technote/.gitkeep +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/templates/technote/components/.gitkeep +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/templates/technote/components/sidebar-source.html +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/templates/technote/sections/.gitkeep +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/templates/technote/sections/header-article.html +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/templates/technote/sections/sidebar-primary.html +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/utils.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer/version.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer.egg-info/dependency_links.txt +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer.egg-info/entry_points.txt +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/src/documenteer.egg-info/top_level.txt +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/conftest.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/data/afw.doxygen.conf +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/data/authordb.yaml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/data/doxygen.tag.zip +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/data/package_alpha/doc/_static/package_alpha/README.md +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/data/package_alpha/doc/doxygen.conf.in +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/data/package_alpha/doc/manifest.yaml +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/data/package_alpha/doc/package.alpha/index.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/data/package_alpha/doc/package_alpha/index.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/data/package_alpha/include/README.md +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/data/package_alpha/src/README.md +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/data/package_beta/doc/README.md +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/ext/__init__.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/ext/autocppapi_test.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/ext/jira_test.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/ext/lsstdocushare_test.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/ext/lssttasks/__init__.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/ext/lssttasks/taskutils_test.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/ext/mockcoderefs_test.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/ext/packagetoctree_test.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/ext/utils_test.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/packagemetadata_test.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/roots/test-autocppapi/conf.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/roots/test-autocppapi/doxygen.tag.zip +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/roots/test-autocppapi/index.rst +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/services/__init__.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/services/technotemigration_test.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/storage/__init__.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/storage/authordb_test.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/storage/technotetoml_test.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/test_conf_toml.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/test_stackdocs_build.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/test_stackdocs_doxygen.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/test_stackdocs_doxygentag.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/test_stackdocs_pkgdiscovery.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tests/test_stackdocs_rootdiscovery.py +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/tox.ini +0 -0
- {documenteer-1.2.2 → documenteer-1.4.0}/webpack.config.js +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
repos:
|
|
2
2
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
3
|
-
rev: v4.
|
|
3
|
+
rev: v4.6.0
|
|
4
4
|
hooks:
|
|
5
5
|
- id: check-yaml
|
|
6
6
|
exclude: ^src/documenteer/storage/localtemplates/technote/ci\.yaml
|
|
@@ -22,12 +22,12 @@ repos:
|
|
|
22
22
|
- toml
|
|
23
23
|
|
|
24
24
|
- repo: https://github.com/psf/black
|
|
25
|
-
rev: 24.
|
|
25
|
+
rev: 24.4.2
|
|
26
26
|
hooks:
|
|
27
27
|
- id: black
|
|
28
28
|
|
|
29
29
|
- repo: https://github.com/asottile/blacken-docs
|
|
30
|
-
rev: 1.
|
|
30
|
+
rev: 1.16.0
|
|
31
31
|
hooks:
|
|
32
32
|
- id: blacken-docs
|
|
33
33
|
additional_dependencies: [black==22.12.0]
|
|
@@ -2,6 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- scriv-insert-here -->
|
|
4
4
|
|
|
5
|
+
<a id='changelog-1.4.0'></a>
|
|
6
|
+
## 1.4.0 (2024-07-11)
|
|
7
|
+
|
|
8
|
+
### New features
|
|
9
|
+
|
|
10
|
+
- Update to technote 0.9.0. This new version of the technote theme features a two column layout that allows wide content, such as tables, code blocks, and figures, to span the full width of the page (bleeding beyond the text column).
|
|
11
|
+
|
|
12
|
+
<a id='changelog-1.3.0'></a>
|
|
13
|
+
## 1.3.0 (2024-05-03)
|
|
14
|
+
|
|
15
|
+
### New features
|
|
16
|
+
|
|
17
|
+
- Added a `[sphinx.redirects]` table to `documenteer.toml`. This provides support for configuring page redirects from the TOML configuratin. Redirects are useful if pages move because of a content re-organization. This feature is based on [sphinx-rediraffe](https://github.com/wpilibsuite/sphinxext-rediraffe).
|
|
18
|
+
|
|
19
|
+
- Added the [sphinxcontrib-youtube](https://sphinxcontrib-youtube.readthedocs.io/en/latest/index.html) for embedded YouTube and Vimeo videos into documentation pages. This extension is available for both user guides (`documenteer.conf.guide`) and technotes (`documenteer.conf.technotes`).
|
|
20
|
+
|
|
21
|
+
### Bug fixes
|
|
22
|
+
|
|
23
|
+
- Technotes ignore files in the repository with `.md`, `.rst`, and `.ipynb` extensions if they aren't the index file. Since technotes are single-page documents, only the index file should be used as a source file. This change lets authors include auxiliary notebooks with their technotes without having to explicitly exclude them from the technote build process. This is implemented with `technote.conf.extend_excludes_for_non_index_source`.
|
|
24
|
+
|
|
25
|
+
- In `documenteer.ext.lssttasks`, attempt to import `_pseudo_parse_arglist` from `sphinx.domains.python._annotations` before falling back to the `sphinx.domains.python` module. Ultimately this is a workaround.
|
|
26
|
+
|
|
27
|
+
- Fix setting the rebuild condition for the `documenteer.ext.githubbibcache` extension.
|
|
28
|
+
|
|
29
|
+
- Fixed the monospace text baseline alignment issue in Safari for technotes by updating to technote 0.8.0. In this version, the font size of the code is set to be 0.9em so that the browser doesn't push the text below the baseline in case its larger than the Source Sans body text. This version also changes the font size on the html element to 100% and instead increases the baseline body text size to 1.1rem on the body element. This change should help technotes respect the user's browser font size settings while also making the rem unit work as expected.
|
|
30
|
+
|
|
31
|
+
### Other changes
|
|
32
|
+
|
|
33
|
+
- Added `defusedxml` as a dev dependency. This is used by Sphinx's `sphinx.testing.fixtures`, but isn't included as a dependency by Sphinx itself. This change ensures that `defusedxml` is installed when running the tests.
|
|
34
|
+
|
|
5
35
|
<a id='changelog-1.2.2'></a>
|
|
6
36
|
## 1.2.2 (2024-04-11)
|
|
7
37
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: documenteer
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4.0
|
|
4
4
|
Summary: Rubin Observatory / LSST Sphinx documentation tools, extensions, and configurations.
|
|
5
5
|
License: The MIT License (MIT)
|
|
6
6
|
|
|
@@ -61,6 +61,7 @@ Requires-Dist: pytest; extra == "dev"
|
|
|
61
61
|
Requires-Dist: pytest-mock; extra == "dev"
|
|
62
62
|
Requires-Dist: lxml; extra == "dev"
|
|
63
63
|
Requires-Dist: cssselect; extra == "dev"
|
|
64
|
+
Requires-Dist: defusedxml; extra == "dev"
|
|
64
65
|
Requires-Dist: sphinx-click; extra == "dev"
|
|
65
66
|
Requires-Dist: sphinxcontrib-autoprogram; extra == "dev"
|
|
66
67
|
Requires-Dist: types-setuptools; extra == "dev"
|
|
@@ -84,6 +85,7 @@ Requires-Dist: sphinxext-opengraph; extra == "guide"
|
|
|
84
85
|
Requires-Dist: sphinxcontrib-redoc; extra == "guide"
|
|
85
86
|
Requires-Dist: sphinxcontrib-jquery; extra == "guide"
|
|
86
87
|
Requires-Dist: sphinxext-rediraffe; extra == "guide"
|
|
88
|
+
Requires-Dist: sphinxcontrib-youtube; extra == "guide"
|
|
87
89
|
Provides-Extra: pipelines
|
|
88
90
|
Requires-Dist: sphinx_design; extra == "pipelines"
|
|
89
91
|
Requires-Dist: pydata-sphinx-theme<0.13.0,>=0.10.0; extra == "pipelines"
|
|
@@ -102,12 +104,13 @@ Requires-Dist: sphinxcontrib-autoprogram; extra == "pipelines"
|
|
|
102
104
|
Requires-Dist: sphinxcontrib-doxylink; extra == "pipelines"
|
|
103
105
|
Requires-Dist: sphinx-click; extra == "pipelines"
|
|
104
106
|
Provides-Extra: technote
|
|
105
|
-
Requires-Dist: technote<0.
|
|
107
|
+
Requires-Dist: technote<0.10.0,>=0.9.0; extra == "technote"
|
|
106
108
|
Requires-Dist: sphinx-prompt; extra == "technote"
|
|
107
109
|
Requires-Dist: sphinxcontrib-mermaid; extra == "technote"
|
|
108
110
|
Requires-Dist: sphinx-diagrams; extra == "technote"
|
|
109
111
|
Requires-Dist: sphinx_design; extra == "technote"
|
|
110
112
|
Requires-Dist: myst-nb; extra == "technote"
|
|
113
|
+
Requires-Dist: sphinxcontrib-youtube; extra == "technote"
|
|
111
114
|
|
|
112
115
|
[](https://documenteer.lsst.io)
|
|
113
116
|
[](https://pypi.python.org/pypi/documenteer)
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cells": [
|
|
3
|
+
{
|
|
4
|
+
"cell_type": "markdown",
|
|
5
|
+
"metadata": {},
|
|
6
|
+
"source": [
|
|
7
|
+
"# Demo technote\n",
|
|
8
|
+
"\n",
|
|
9
|
+
"```{abstract}\n",
|
|
10
|
+
"A *technote* is a web-native single page document that enables rapid technical communication within and across teams.\n",
|
|
11
|
+
"```"
|
|
12
|
+
]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"cell_type": "markdown",
|
|
16
|
+
"metadata": {},
|
|
17
|
+
"source": [
|
|
18
|
+
"## Introduction\n",
|
|
19
|
+
"\n",
|
|
20
|
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.\n",
|
|
21
|
+
"\n",
|
|
22
|
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.\n",
|
|
23
|
+
"\n",
|
|
24
|
+
"A parenthetical citation {cite:p}`SQR-083`. And a textual citation {cite:t}`SQR-083`."
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"cell_type": "markdown",
|
|
29
|
+
"metadata": {},
|
|
30
|
+
"source": [
|
|
31
|
+
"## Method\n",
|
|
32
|
+
"\n",
|
|
33
|
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.\n",
|
|
34
|
+
"\n",
|
|
35
|
+
"A list:\n",
|
|
36
|
+
"\n",
|
|
37
|
+
"- First item\n",
|
|
38
|
+
"- Second item\n",
|
|
39
|
+
"- Third item\n",
|
|
40
|
+
"\n",
|
|
41
|
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo."
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"cell_type": "code",
|
|
46
|
+
"execution_count": null,
|
|
47
|
+
"metadata": {},
|
|
48
|
+
"outputs": [],
|
|
49
|
+
"source": [
|
|
50
|
+
"print(\"Hello world\")"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"cell_type": "markdown",
|
|
55
|
+
"metadata": {},
|
|
56
|
+
"source": [
|
|
57
|
+
"## Analysis\n",
|
|
58
|
+
"\n",
|
|
59
|
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.\n",
|
|
60
|
+
"\n",
|
|
61
|
+
"```{prompt} bash\n",
|
|
62
|
+
"git add index.rst\n",
|
|
63
|
+
"```\n",
|
|
64
|
+
"\n",
|
|
65
|
+
"Some following text.\n",
|
|
66
|
+
"\n",
|
|
67
|
+
"```{mermaid}\n",
|
|
68
|
+
"graph TD\n",
|
|
69
|
+
" A[Square Rect] -- Link text --> B((Circle))\n",
|
|
70
|
+
" A --> C(Round Rect)\n",
|
|
71
|
+
" B --> D{Rhombus}\n",
|
|
72
|
+
" C --> D\n",
|
|
73
|
+
"```\n",
|
|
74
|
+
"\n",
|
|
75
|
+
"```{diagrams} diagram.py\n",
|
|
76
|
+
"```"
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"cell_type": "markdown",
|
|
81
|
+
"metadata": {},
|
|
82
|
+
"source": [
|
|
83
|
+
"## References\n",
|
|
84
|
+
"\n",
|
|
85
|
+
"```{bibliography}\n",
|
|
86
|
+
"```"
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"metadata": {
|
|
91
|
+
"language_info": {
|
|
92
|
+
"name": "python"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"nbformat": 4,
|
|
96
|
+
"nbformat_minor": 2
|
|
97
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cells": [
|
|
3
|
+
{
|
|
4
|
+
"cell_type": "markdown",
|
|
5
|
+
"metadata": {},
|
|
6
|
+
"source": [
|
|
7
|
+
"# Demo technote\n",
|
|
8
|
+
"\n",
|
|
9
|
+
"```{abstract}\n",
|
|
10
|
+
"A *technote* is a web-native single page document that enables rapid technical communication within and across teams.\n",
|
|
11
|
+
"```"
|
|
12
|
+
]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"cell_type": "markdown",
|
|
16
|
+
"metadata": {},
|
|
17
|
+
"source": [
|
|
18
|
+
"## Introduction\n",
|
|
19
|
+
"\n",
|
|
20
|
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.\n",
|
|
21
|
+
"\n",
|
|
22
|
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.\n",
|
|
23
|
+
"\n",
|
|
24
|
+
"A parenthetical citation {cite:p}`SQR-083`. And a textual citation {cite:t}`SQR-083`."
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"cell_type": "markdown",
|
|
29
|
+
"metadata": {},
|
|
30
|
+
"source": [
|
|
31
|
+
"## Method\n",
|
|
32
|
+
"\n",
|
|
33
|
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.\n",
|
|
34
|
+
"\n",
|
|
35
|
+
"A list:\n",
|
|
36
|
+
"\n",
|
|
37
|
+
"- First item\n",
|
|
38
|
+
"- Second item\n",
|
|
39
|
+
"- Third item\n",
|
|
40
|
+
"\n",
|
|
41
|
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo."
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"cell_type": "code",
|
|
46
|
+
"execution_count": null,
|
|
47
|
+
"metadata": {},
|
|
48
|
+
"outputs": [],
|
|
49
|
+
"source": [
|
|
50
|
+
"print(\"Hello world\")"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"cell_type": "markdown",
|
|
55
|
+
"metadata": {},
|
|
56
|
+
"source": [
|
|
57
|
+
"## Analysis\n",
|
|
58
|
+
"\n",
|
|
59
|
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.\n",
|
|
60
|
+
"\n",
|
|
61
|
+
"```{prompt} bash\n",
|
|
62
|
+
"git add index.rst\n",
|
|
63
|
+
"```\n",
|
|
64
|
+
"\n",
|
|
65
|
+
"Some following text.\n",
|
|
66
|
+
"\n",
|
|
67
|
+
"```{mermaid}\n",
|
|
68
|
+
"graph TD\n",
|
|
69
|
+
" A[Square Rect] -- Link text --> B((Circle))\n",
|
|
70
|
+
" A --> C(Round Rect)\n",
|
|
71
|
+
" B --> D{Rhombus}\n",
|
|
72
|
+
" C --> D\n",
|
|
73
|
+
"```\n",
|
|
74
|
+
"\n",
|
|
75
|
+
"```{diagrams} diagram.py\n",
|
|
76
|
+
"```"
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"cell_type": "markdown",
|
|
81
|
+
"metadata": {},
|
|
82
|
+
"source": [
|
|
83
|
+
"## References\n",
|
|
84
|
+
"\n",
|
|
85
|
+
"```{bibliography}\n",
|
|
86
|
+
"```"
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"metadata": {
|
|
91
|
+
"language_info": {
|
|
92
|
+
"name": "python"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"nbformat": 4,
|
|
96
|
+
"nbformat_minor": 2
|
|
97
|
+
}
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
# Demo technote
|
|
2
|
+
|
|
3
|
+
```{abstract}
|
|
4
|
+
A *technote* is a web-native single page document that enables rapid technical communication within and across teams.
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
## Introduction
|
|
8
|
+
|
|
9
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.
|
|
10
|
+
|
|
11
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.
|
|
12
|
+
|
|
13
|
+
A parenthetical citation {cite:p}`SQR-083`. And a textual citation {cite:t}`SQR-083`.
|
|
14
|
+
|
|
15
|
+
This is `inline code`.
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## Images and figures
|
|
19
|
+
|
|
20
|
+
A figure with a caption:
|
|
21
|
+
|
|
22
|
+
```{figure} https://placehold.co/1200x400
|
|
23
|
+
|
|
24
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nisl quis molestie ultricies, nunc nisl aliquet nunc, quis aliquam nisl nunc eu nisl.
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Wide figures
|
|
28
|
+
|
|
29
|
+
A figure marked with the `technote-wide-content` class applied as a `figclass` option:
|
|
30
|
+
|
|
31
|
+
```{figure} https://placehold.co/1200x400
|
|
32
|
+
:figclass: technote-wide-content
|
|
33
|
+
|
|
34
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nisl quis molestie ultricies, nunc nisl aliquet nunc, quis aliquam nisl nunc eu nisl.
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Tables
|
|
38
|
+
|
|
39
|
+
A table:
|
|
40
|
+
|
|
41
|
+
```{list-table}
|
|
42
|
+
:header-rows: 1
|
|
43
|
+
|
|
44
|
+
* - Column 1
|
|
45
|
+
- Column 2
|
|
46
|
+
- Column 3
|
|
47
|
+
* - Row 1
|
|
48
|
+
- 1
|
|
49
|
+
- 1
|
|
50
|
+
* - Row 2
|
|
51
|
+
- 2
|
|
52
|
+
- 2
|
|
53
|
+
* - Row 3
|
|
54
|
+
- 3
|
|
55
|
+
- 3
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
A table marked with the `technote-wide-content` class:
|
|
59
|
+
|
|
60
|
+
```{rst-class} technote-wide-content
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
```{list-table}
|
|
64
|
+
:header-rows: 1
|
|
65
|
+
|
|
66
|
+
* - Column 1
|
|
67
|
+
- Column 2
|
|
68
|
+
- Column 3
|
|
69
|
+
- Column 4
|
|
70
|
+
- Column 5
|
|
71
|
+
- Column 6
|
|
72
|
+
- Column 7
|
|
73
|
+
* - Row 1
|
|
74
|
+
- lorem ipsum dolor sit amet consectetur adipiscing elit
|
|
75
|
+
- lorem ipsum dolor
|
|
76
|
+
- lorem ipsum dolor
|
|
77
|
+
- 5
|
|
78
|
+
- 6
|
|
79
|
+
- Lorem ipsum
|
|
80
|
+
* - Row 2
|
|
81
|
+
- 6
|
|
82
|
+
- 7
|
|
83
|
+
- 8
|
|
84
|
+
- 9
|
|
85
|
+
- 10
|
|
86
|
+
- Lorem ipsum
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nisl quis molestie ultricies, nunc nisl aliquet nunc, quis aliquam nisl nunc eu nisl.
|
|
90
|
+
|
|
91
|
+
### Code blocks
|
|
92
|
+
|
|
93
|
+
A regular code block:
|
|
94
|
+
|
|
95
|
+
```{code-block} python
|
|
96
|
+
print("Hello, world!")
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
And with a caption:
|
|
100
|
+
|
|
101
|
+
```{code-block} python
|
|
102
|
+
:caption: A code block with a caption
|
|
103
|
+
|
|
104
|
+
print("Hello, world!")
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
A wide code block without a caption:
|
|
108
|
+
|
|
109
|
+
```{rst-class} technote-wide-content
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
```{code-block} python
|
|
113
|
+
print("Hello, world! This is a code block. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nisl quis molestie ultricies, nunc nisl aliquet nunc, quis aliquam nisl nunc eu nisl.")
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
A wide code block with a caption where the class is set externally:
|
|
117
|
+
|
|
118
|
+
```{rst-class} technote-wide-content
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
```{code-block} python
|
|
122
|
+
:caption: A wide code block. This is a long caption. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nisl quis molestie ultricies, nunc nisl aliquet nunc, quis aliquam nisl nunc eu nisl.
|
|
123
|
+
|
|
124
|
+
print("Hello, world! This is a code block. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nisl quis molestie ultricies, nunc nisl aliquet nunc, quis aliquam nisl nunc eu nisl.")
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
A code prompt:
|
|
128
|
+
|
|
129
|
+
```{prompt} bash
|
|
130
|
+
git add index.rst
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
## Admonitions
|
|
134
|
+
|
|
135
|
+
An admonition:
|
|
136
|
+
|
|
137
|
+
```{note}
|
|
138
|
+
This is a note. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nisl quis molestie ultricies, nunc nisl aliquet nunc, quis aliquam nisl nunc eu nisl.
|
|
139
|
+
|
|
140
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nisl quis molestie ultricies, nunc nisl aliquet nunc, quis aliquam nisl nunc eu nisl.
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
## Lists
|
|
144
|
+
|
|
145
|
+
A bulleted list:
|
|
146
|
+
|
|
147
|
+
- Item 1
|
|
148
|
+
- Item 2
|
|
149
|
+
- Item 3
|
|
150
|
+
|
|
151
|
+
A numbered list:
|
|
152
|
+
|
|
153
|
+
1. Item 1
|
|
154
|
+
2. Item 2
|
|
155
|
+
3. Item 3
|
|
156
|
+
|
|
157
|
+
A bulleted list with a nested numbered list:
|
|
158
|
+
|
|
159
|
+
- Item 1
|
|
160
|
+
1. Item 1.1
|
|
161
|
+
2. Item 1.2
|
|
162
|
+
- Item 2
|
|
163
|
+
- Item 3
|
|
164
|
+
|
|
165
|
+
A definition list:
|
|
166
|
+
|
|
167
|
+
term 1
|
|
168
|
+
Definition 1
|
|
169
|
+
term 2
|
|
170
|
+
Definition 2 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nisl quis molestie ultricies, nunc nisl aliquet nunc, quis aliquam nisl nunc eu nisl.
|
|
171
|
+
|
|
172
|
+
## Links
|
|
173
|
+
|
|
174
|
+
A link to [Rubin Observatory](https://www.rubinobservatory.org).
|
|
175
|
+
|
|
176
|
+
## Analysis
|
|
177
|
+
|
|
178
|
+
A flowchart made with Mermaid:
|
|
179
|
+
|
|
180
|
+
```{mermaid}
|
|
181
|
+
graph TD
|
|
182
|
+
A[Square Rect] -- Link text --> B((Circle))
|
|
183
|
+
A --> C(Round Rect)
|
|
184
|
+
B --> D{Rhombus}
|
|
185
|
+
C --> D
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
A diagram:
|
|
189
|
+
|
|
190
|
+
```{rst-class} technote-wide-content
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
```{diagrams} diagram.py
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
## Conclusion
|
|
197
|
+
|
|
198
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.
|
|
199
|
+
|
|
200
|
+
## References
|
|
201
|
+
|
|
202
|
+
```{bibliography}
|
|
203
|
+
```
|
|
@@ -16,7 +16,7 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetr
|
|
|
16
16
|
|
|
17
17
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetra neque, at semper nulla mattis auctor. Proin semper mollis enim eget interdum. Mauris eleifend eget diam vitae bibendum. Praesent ut aliquet odio, sodales imperdiet nisi. Nam interdum imperdiet tortor sed fringilla. Maecenas efficitur mi sodales nulla commodo rutrum. Ut ornare diam quam, sed commodo turpis aliquam et. In nec enim consequat, suscipit tortor sit amet, luctus ante. Integer dictum augue diam, non pulvinar massa euismod in. Morbi viverra condimentum auctor. Nullam et metus mauris. Cras risus ex, porta sit amet nibh et, dapibus auctor leo.
|
|
18
18
|
|
|
19
|
-
A parenthetical citation :cite:p:`SQR-083`. And a textual citation :cite:t:`SQR-083`.
|
|
19
|
+
A parenthetical citation :cite:p:`SQR-083`. And a textual citation :cite:t:`SQR-083`. Some ``source code`` embedded in text.
|
|
20
20
|
|
|
21
21
|
Method
|
|
22
22
|
======
|
|
@@ -2,6 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- scriv-insert-here -->
|
|
4
4
|
|
|
5
|
+
<a id='changelog-1.4.0'></a>
|
|
6
|
+
## 1.4.0 (2024-07-11)
|
|
7
|
+
|
|
8
|
+
### New features
|
|
9
|
+
|
|
10
|
+
- Update to technote 0.9.0. This new version of the technote theme features a two column layout that allows wide content, such as tables, code blocks, and figures, to span the full width of the page (bleeding beyond the text column).
|
|
11
|
+
|
|
12
|
+
<a id='changelog-1.3.0'></a>
|
|
13
|
+
## 1.3.0 (2024-05-03)
|
|
14
|
+
|
|
15
|
+
### New features
|
|
16
|
+
|
|
17
|
+
- Added a `[sphinx.redirects]` table to `documenteer.toml`. This provides support for configuring page redirects from the TOML configuratin. Redirects are useful if pages move because of a content re-organization. This feature is based on [sphinx-rediraffe](https://github.com/wpilibsuite/sphinxext-rediraffe).
|
|
18
|
+
|
|
19
|
+
- Added the [sphinxcontrib-youtube](https://sphinxcontrib-youtube.readthedocs.io/en/latest/index.html) for embedded YouTube and Vimeo videos into documentation pages. This extension is available for both user guides (`documenteer.conf.guide`) and technotes (`documenteer.conf.technotes`).
|
|
20
|
+
|
|
21
|
+
### Bug fixes
|
|
22
|
+
|
|
23
|
+
- Technotes ignore files in the repository with `.md`, `.rst`, and `.ipynb` extensions if they aren't the index file. Since technotes are single-page documents, only the index file should be used as a source file. This change lets authors include auxiliary notebooks with their technotes without having to explicitly exclude them from the technote build process. This is implemented with `technote.conf.extend_excludes_for_non_index_source`.
|
|
24
|
+
|
|
25
|
+
- In `documenteer.ext.lssttasks`, attempt to import `_pseudo_parse_arglist` from `sphinx.domains.python._annotations` before falling back to the `sphinx.domains.python` module. Ultimately this is a workaround.
|
|
26
|
+
|
|
27
|
+
- Fix setting the rebuild condition for the `documenteer.ext.githubbibcache` extension.
|
|
28
|
+
|
|
29
|
+
- Fixed the monospace text baseline alignment issue in Safari for technotes by updating to technote 0.8.0. In this version, the font size of the code is set to be 0.9em so that the browser doesn't push the text below the baseline in case its larger than the Source Sans body text. This version also changes the font size on the html element to 100% and instead increases the baseline body text size to 1.1rem on the body element. This change should help technotes respect the user's browser font size settings while also making the rem unit work as expected.
|
|
30
|
+
|
|
31
|
+
### Other changes
|
|
32
|
+
|
|
33
|
+
- Added `defusedxml` as a dev dependency. This is used by Sphinx's `sphinx.testing.fixtures`, but isn't included as a dependency by Sphinx itself. This change ensures that `defusedxml` is installed when running the tests.
|
|
34
|
+
|
|
5
35
|
<a id='changelog-1.2.2'></a>
|
|
6
36
|
## 1.2.2 (2024-04-11)
|
|
7
37
|
|
|
@@ -44,3 +44,12 @@ technote = "https://technote.lsst.io/"
|
|
|
44
44
|
ignore = [
|
|
45
45
|
"https://mermaid-js.github.io"
|
|
46
46
|
]
|
|
47
|
+
|
|
48
|
+
[sphinx.redirects]
|
|
49
|
+
"pipelines/build-overview.rst" = "guides/pipelines/build-overview.rst"
|
|
50
|
+
"pipelines/configuration.rst" = "guides/pipelines/configuration.rst"
|
|
51
|
+
"pipelines/cpp-api-linking.rst" = "guides/pipelines/cpp-api-linking.rst"
|
|
52
|
+
"pipelines/index.rst" = "guides/pipelines/index.rst"
|
|
53
|
+
"pipelines/install.rst" = "guides/pipelines/install.rst"
|
|
54
|
+
"pipelines/package-docs-cli.rst" = "guides/pipelines/package-docs-cli.rst"
|
|
55
|
+
"pipelines/stack-docs-cli.rst" = "guides/pipelines/stack-docs-cli.rst"
|
|
@@ -26,6 +26,7 @@ Documenteer provides a configuration profile for creating branded user guides wi
|
|
|
26
26
|
pyproject-configuration
|
|
27
27
|
openapi
|
|
28
28
|
rst-epilog
|
|
29
|
+
page-redirects
|
|
29
30
|
extend-conf-py
|
|
30
31
|
|
|
31
32
|
.. toctree::
|
|
@@ -36,6 +37,7 @@ Documenteer provides a configuration profile for creating branded user guides wi
|
|
|
36
37
|
diagrams
|
|
37
38
|
badges
|
|
38
39
|
tabsets
|
|
40
|
+
video-embeds
|
|
39
41
|
|
|
40
42
|
.. toctree::
|
|
41
43
|
:maxdepth: 2
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
###########################################
|
|
2
|
+
Redirecting pages when reorganizing content
|
|
3
|
+
###########################################
|
|
4
|
+
|
|
5
|
+
As a documentation site grows, its natural for content to need to move.
|
|
6
|
+
If pages are moved or renamed, you should create a redirect from the old page path to the new one so that users won't be orphaned by out-of-date links and bookmarks.
|
|
7
|
+
Documenteer supports this with the :ref:`guide-sphinx-redirects` table in the :file:`documenteer.toml` configuration file.
|
|
8
|
+
|
|
9
|
+
Adding a page redirect in documenteer.toml
|
|
10
|
+
==========================================
|
|
11
|
+
|
|
12
|
+
As an example, consider the page at :file:`old-page.rst` has moved to :file:`some-dir/new-page.rst`.
|
|
13
|
+
To create a redirect from the old page to the new one, add the following to the :file:`documenteer.toml` file:
|
|
14
|
+
|
|
15
|
+
.. code-block:: toml
|
|
16
|
+
:caption: documenteer.toml
|
|
17
|
+
|
|
18
|
+
[sphinx.redirects]
|
|
19
|
+
"old-page.rst" = "some-dir/new-page.rst"
|
|
20
|
+
|
|
21
|
+
These paths are relative to the documentation project's root directory (where :file:`conf.py` and :file:`documenteer.toml` are located) and include the file extension (e.g., :file:`.rst` or :file:`.md`).
|
|
22
|
+
|
|
23
|
+
The table accepts an arbitrary number of redirects:
|
|
24
|
+
|
|
25
|
+
.. code-block:: toml
|
|
26
|
+
:captin: documenteer.toml
|
|
27
|
+
|
|
28
|
+
[sphinx.redirects]
|
|
29
|
+
"old-page.rst" = "some-dir/new-page.rst"
|
|
30
|
+
"foo.rst" = "bar.rst"
|
|
31
|
+
|
|
32
|
+
Redirects for deleted pages
|
|
33
|
+
===========================
|
|
34
|
+
|
|
35
|
+
Besides pages that have been moved, you can use this feature for pages that have been deleted.
|
|
36
|
+
Choose an existing path that is most relevant to the deleted page and redirect it to the new location.
|
|
37
|
+
|
|
38
|
+
.. code-block:: toml
|
|
39
|
+
:caption: documenteer.toml
|
|
40
|
+
|
|
41
|
+
[sphinx.redirects]
|
|
42
|
+
"deleted-page.rst" = "index.rst"
|
|
@@ -372,10 +372,27 @@ The default value is ``api``, which is a good standard for Python projects with
|
|
|
372
372
|
If the Python API is oriented towards contributors, such as in an application or service, you can change the default:
|
|
373
373
|
|
|
374
374
|
.. code-block:: toml
|
|
375
|
+
:caption: documenteer.toml
|
|
375
376
|
|
|
376
377
|
[sphinx]
|
|
377
378
|
python_api_dir = "dev/api/contents"
|
|
378
379
|
|
|
380
|
+
.. _guide-sphinx-redirects:
|
|
381
|
+
|
|
382
|
+
[sphinx.redirects]
|
|
383
|
+
==================
|
|
384
|
+
|
|
385
|
+
|optional|
|
|
386
|
+
|
|
387
|
+
A table of paths to redirect to other paths. Use this setting to redirect old page locations to the new locations when a documentation site is reorganized.
|
|
388
|
+
|
|
389
|
+
.. code-block:: toml
|
|
390
|
+
:caption: documenteer.toml
|
|
391
|
+
|
|
392
|
+
[sphinx.redirects]
|
|
393
|
+
"old/path" = "new/path"
|
|
394
|
+
"old/path2" = "new/path2"
|
|
395
|
+
|
|
379
396
|
[sphinx.theme]
|
|
380
397
|
==============
|
|
381
398
|
|