documenteer 1.2.1__tar.gz → 1.3.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.
Files changed (259) hide show
  1. {documenteer-1.2.1 → documenteer-1.3.0}/.pre-commit-config.yaml +3 -3
  2. {documenteer-1.2.1 → documenteer-1.3.0}/CHANGELOG.md +50 -18
  3. {documenteer-1.2.1 → documenteer-1.3.0}/PKG-INFO +5 -2
  4. documenteer-1.3.0/demo/ipynb-technote/extra-notebook.ipynb +97 -0
  5. {documenteer-1.2.1 → documenteer-1.3.0}/demo/ipynb-technote/index.ipynb +1 -1
  6. documenteer-1.3.0/demo/ipynb-technote/subdir/subdir-notebook.ipynb +97 -0
  7. {documenteer-1.2.1 → documenteer-1.3.0}/demo/md-technote/index.md +1 -1
  8. {documenteer-1.2.1 → documenteer-1.3.0}/demo/rst-technote/index.rst +1 -1
  9. {documenteer-1.2.1 → documenteer-1.3.0}/docs/changelog.md +50 -18
  10. documenteer-1.3.0/docs/conf.py +3 -0
  11. {documenteer-1.2.1 → documenteer-1.3.0}/docs/documenteer.toml +9 -0
  12. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/index.rst +2 -0
  13. documenteer-1.3.0/docs/guides/page-redirects.rst +42 -0
  14. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/toml-reference.rst +17 -0
  15. documenteer-1.3.0/docs/guides/video-embeds.rst +60 -0
  16. {documenteer-1.2.1 → documenteer-1.3.0}/docs/sphinx-extensions/jira-reference.rst +1 -1
  17. {documenteer-1.2.1 → documenteer-1.3.0}/pyproject.toml +6 -2
  18. {documenteer-1.2.1 → documenteer-1.3.0}/src/assets/rubin-technote/styles/components/_article-header.scss +2 -2
  19. {documenteer-1.2.1 → documenteer-1.3.0}/src/assets/rubin-technote/styles/components/_authors.scss +1 -1
  20. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/rubin-technote.css +3 -3
  21. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/rubin-technote.css.map +1 -1
  22. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/conf/__init__.py +2 -0
  23. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/conf/_toml.py +16 -0
  24. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/conf/_utils.py +34 -0
  25. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/conf/guide.py +3 -3
  26. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/conf/pipelines.py +1 -1
  27. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/conf/technote.py +7 -0
  28. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/githubbibcache.py +2 -2
  29. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/jira.py +1 -1
  30. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/lssttasks/pyapisummary.py +6 -1
  31. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer.egg-info/PKG-INFO +5 -2
  32. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer.egg-info/SOURCES.txt +4 -0
  33. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer.egg-info/requires.txt +4 -1
  34. {documenteer-1.2.1 → documenteer-1.3.0}/tests/ext/jira_test.py +1 -1
  35. {documenteer-1.2.1 → documenteer-1.3.0}/tests/test_conf_toml.py +2 -2
  36. {documenteer-1.2.1 → documenteer-1.3.0}/tests/test_conf_utils.py +20 -1
  37. documenteer-1.2.1/docs/conf.py +0 -13
  38. {documenteer-1.2.1 → documenteer-1.3.0}/.flake8 +0 -0
  39. {documenteer-1.2.1 → documenteer-1.3.0}/.github/CODE_OF_CONDUCT.md +0 -0
  40. {documenteer-1.2.1 → documenteer-1.3.0}/.github/CONTRIBUTING.md +0 -0
  41. {documenteer-1.2.1 → documenteer-1.3.0}/.github/SUPPORT.md +0 -0
  42. {documenteer-1.2.1 → documenteer-1.3.0}/.github/dependabot.yml +0 -0
  43. {documenteer-1.2.1 → documenteer-1.3.0}/.github/workflows/ci-cron.yaml +0 -0
  44. {documenteer-1.2.1 → documenteer-1.3.0}/.github/workflows/ci.yaml +0 -0
  45. {documenteer-1.2.1 → documenteer-1.3.0}/.github/workflows/dependencies.yaml +0 -0
  46. {documenteer-1.2.1 → documenteer-1.3.0}/.gitignore +0 -0
  47. {documenteer-1.2.1 → documenteer-1.3.0}/.npmrc +0 -0
  48. {documenteer-1.2.1 → documenteer-1.3.0}/.nvmrc +0 -0
  49. {documenteer-1.2.1 → documenteer-1.3.0}/.prettierignore +0 -0
  50. {documenteer-1.2.1 → documenteer-1.3.0}/.prettierrc.yaml +0 -0
  51. {documenteer-1.2.1 → documenteer-1.3.0}/.vscode/settings.json +0 -0
  52. {documenteer-1.2.1 → documenteer-1.3.0}/.vscode/tasks.json +0 -0
  53. {documenteer-1.2.1 → documenteer-1.3.0}/LICENSE +0 -0
  54. {documenteer-1.2.1 → documenteer-1.3.0}/MANIFEST.in +0 -0
  55. {documenteer-1.2.1 → documenteer-1.3.0}/Makefile +0 -0
  56. {documenteer-1.2.1 → documenteer-1.3.0}/README.md +0 -0
  57. {documenteer-1.2.1 → documenteer-1.3.0}/changelog.d/_template.md.jinja +0 -0
  58. {documenteer-1.2.1 → documenteer-1.3.0}/demo/ipynb-technote/.gitignore +0 -0
  59. {documenteer-1.2.1 → documenteer-1.3.0}/demo/ipynb-technote/Makefile +0 -0
  60. {documenteer-1.2.1 → documenteer-1.3.0}/demo/ipynb-technote/conf.py +0 -0
  61. {documenteer-1.2.1 → documenteer-1.3.0}/demo/ipynb-technote/diagram.py +0 -0
  62. {documenteer-1.2.1 → documenteer-1.3.0}/demo/ipynb-technote/technote.toml +0 -0
  63. {documenteer-1.2.1 → documenteer-1.3.0}/demo/md-technote/.gitignore +0 -0
  64. {documenteer-1.2.1 → documenteer-1.3.0}/demo/md-technote/Makefile +0 -0
  65. {documenteer-1.2.1 → documenteer-1.3.0}/demo/md-technote/conf.py +0 -0
  66. {documenteer-1.2.1 → documenteer-1.3.0}/demo/md-technote/diagram.py +0 -0
  67. {documenteer-1.2.1 → documenteer-1.3.0}/demo/md-technote/technote.toml +0 -0
  68. {documenteer-1.2.1 → documenteer-1.3.0}/demo/rst-technote/.gitignore +0 -0
  69. {documenteer-1.2.1 → documenteer-1.3.0}/demo/rst-technote/Makefile +0 -0
  70. {documenteer-1.2.1 → documenteer-1.3.0}/demo/rst-technote/conf.py +0 -0
  71. {documenteer-1.2.1 → documenteer-1.3.0}/demo/rst-technote/diagram.py +0 -0
  72. {documenteer-1.2.1 → documenteer-1.3.0}/demo/rst-technote/technote.toml +0 -0
  73. {documenteer-1.2.1 → documenteer-1.3.0}/docs/.gitignore +0 -0
  74. {documenteer-1.2.1 → documenteer-1.3.0}/docs/Makefile +0 -0
  75. {documenteer-1.2.1 → documenteer-1.3.0}/docs/_rst_epilog.rst +0 -0
  76. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/api/documenteer.conf.rst +0 -0
  77. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/api/documenteer.ext.rst +0 -0
  78. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/api/documenteer.requestsutils.rst +0 -0
  79. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/api/documenteer.sphinxrunner.rst +0 -0
  80. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/api/documenteer.stackdocs.rst +0 -0
  81. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/api/index.rst +0 -0
  82. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/development.rst +0 -0
  83. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/html-templates.rst +0 -0
  84. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/index.rst +0 -0
  85. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/release.rst +0 -0
  86. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/theme-assets.rst +0 -0
  87. {documenteer-1.2.1 → documenteer-1.3.0}/docs/dev/theme.rst +0 -0
  88. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/badges.rst +0 -0
  89. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/configuration-preset.rst +0 -0
  90. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/configuration.rst +0 -0
  91. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/diagrams.rst +0 -0
  92. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/extend-conf-py.rst +0 -0
  93. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/including-notebooks.ipynb +0 -0
  94. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/markdown-primer.md +0 -0
  95. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/openapi.rst +0 -0
  96. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/organization.rst +0 -0
  97. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/overview.rst +0 -0
  98. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/pipelines/build-overview.rst +0 -0
  99. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/pipelines/configuration.rst +0 -0
  100. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/pipelines/cpp-api-linking.rst +0 -0
  101. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/pipelines/index.rst +0 -0
  102. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/pipelines/install.rst +0 -0
  103. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/pipelines/package-docs-cli.rst +0 -0
  104. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/pipelines/stack-docs-cli.rst +0 -0
  105. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/pyproject-configuration.rst +0 -0
  106. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/rst-epilog.rst +0 -0
  107. {documenteer-1.2.1 → documenteer-1.3.0}/docs/guides/tabsets.rst +0 -0
  108. {documenteer-1.2.1 → documenteer-1.3.0}/docs/index.rst +0 -0
  109. {documenteer-1.2.1 → documenteer-1.3.0}/docs/sphinx-extensions/autocppapi.rst +0 -0
  110. {documenteer-1.2.1 → documenteer-1.3.0}/docs/sphinx-extensions/autodocreset.rst +0 -0
  111. {documenteer-1.2.1 → documenteer-1.3.0}/docs/sphinx-extensions/docushare-reference.rst +0 -0
  112. {documenteer-1.2.1 → documenteer-1.3.0}/docs/sphinx-extensions/githubbibcache.rst +0 -0
  113. {documenteer-1.2.1 → documenteer-1.3.0}/docs/sphinx-extensions/index.rst +0 -0
  114. {documenteer-1.2.1 → documenteer-1.3.0}/docs/sphinx-extensions/lsst-pybtex-style.rst +0 -0
  115. {documenteer-1.2.1 → documenteer-1.3.0}/docs/sphinx-extensions/lssttasks.rst +0 -0
  116. {documenteer-1.2.1 → documenteer-1.3.0}/docs/sphinx-extensions/openapi.rst +0 -0
  117. {documenteer-1.2.1 → documenteer-1.3.0}/docs/sphinx-extensions/package-toctree.rst +0 -0
  118. {documenteer-1.2.1 → documenteer-1.3.0}/docs/sphinx-extensions/remote-code-block.rst +0 -0
  119. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/_templates/README.md +0 -0
  120. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/_templates/README.rst +0 -0
  121. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/author-metadata.rst +0 -0
  122. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/configuration.rst +0 -0
  123. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/document-status.rst +0 -0
  124. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/edit-locally.rst +0 -0
  125. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/edit-on-github.rst +0 -0
  126. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/extensions.rst +0 -0
  127. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/how-your-technote-gets-published.rst +0 -0
  128. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/index.rst +0 -0
  129. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/migrate.rst +0 -0
  130. {documenteer-1.2.1 → documenteer-1.3.0}/docs/technotes/start-a-technote.rst +0 -0
  131. {documenteer-1.2.1 → documenteer-1.3.0}/licenses/README.md +0 -0
  132. {documenteer-1.2.1 → documenteer-1.3.0}/licenses/astropy-helpers.txt +0 -0
  133. {documenteer-1.2.1 → documenteer-1.3.0}/licenses/sphinx-issue.txt +0 -0
  134. {documenteer-1.2.1 → documenteer-1.3.0}/licenses/sphinx.txt +0 -0
  135. {documenteer-1.2.1 → documenteer-1.3.0}/package-lock.json +0 -0
  136. {documenteer-1.2.1 → documenteer-1.3.0}/package.json +0 -0
  137. {documenteer-1.2.1 → documenteer-1.3.0}/postcss.config.js +0 -0
  138. {documenteer-1.2.1 → documenteer-1.3.0}/setup.cfg +0 -0
  139. {documenteer-1.2.1 → documenteer-1.3.0}/src/assets/rubin-technote/styles/SourceSans3VF-Italic.ttf.woff2 +0 -0
  140. {documenteer-1.2.1 → documenteer-1.3.0}/src/assets/rubin-technote/styles/SourceSans3VF-Upright.ttf.woff2 +0 -0
  141. {documenteer-1.2.1 → documenteer-1.3.0}/src/assets/rubin-technote/styles/_hacks.scss +0 -0
  142. {documenteer-1.2.1 → documenteer-1.3.0}/src/assets/rubin-technote/styles/_properties.scss +0 -0
  143. {documenteer-1.2.1 → documenteer-1.3.0}/src/assets/rubin-technote/styles/components/_global-breadcrumbs.scss +0 -0
  144. {documenteer-1.2.1 → documenteer-1.3.0}/src/assets/rubin-technote/styles/components/_index.scss +0 -0
  145. {documenteer-1.2.1 → documenteer-1.3.0}/src/assets/rubin-technote/styles/components/_sidebar-section.scss +0 -0
  146. {documenteer-1.2.1 → documenteer-1.3.0}/src/assets/rubin-technote/styles/components/_version-info.scss +0 -0
  147. {documenteer-1.2.1 → documenteer-1.3.0}/src/assets/rubin-technote/styles/rubin-technote.scss +0 -0
  148. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/__init__.py +0 -0
  149. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/.gitignore +0 -0
  150. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/731c8feefe13e72a8691.woff2 +0 -0
  151. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/b8bc3440ba2145e132f5.woff2 +0 -0
  152. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/favicon.ico +0 -0
  153. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/rsd-assets/rubin-imagotype-color-on-black-crop.svg +0 -0
  154. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/rsd-assets/rubin-imagotype-color-on-white-crop.svg +0 -0
  155. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/rubin-favicon-transparent-32px.png +0 -0
  156. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/rubin-favicon.svg +0 -0
  157. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/rubin-pydata-theme.css +0 -0
  158. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/rubin-titlebar-imagotype-dark.svg +0 -0
  159. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/rubin-titlebar-imagotype-light.svg +0 -0
  160. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/scripts/rubin-technote.js +0 -0
  161. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/assets/scripts/rubin-technote.js.map +0 -0
  162. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/cli.py +0 -0
  163. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/conf/pipelinespkg.py +0 -0
  164. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/__init__.py +0 -0
  165. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/_utils.py +0 -0
  166. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/autocppapi.py +0 -0
  167. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/autodocreset.py +0 -0
  168. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/bibtex.py +0 -0
  169. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/lsstdocushare.py +0 -0
  170. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/lssttasks/__init__.py +0 -0
  171. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/lssttasks/configfieldlists.py +0 -0
  172. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/lssttasks/crossrefs.py +0 -0
  173. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/lssttasks/taskutils.py +0 -0
  174. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/lssttasks/topiclists.py +0 -0
  175. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/lssttasks/topics.py +0 -0
  176. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/mockcoderefs.py +0 -0
  177. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/openapi.py +0 -0
  178. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/packagetoctree.py +0 -0
  179. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/ext/remotecodeblock.py +0 -0
  180. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/packagemetadata.py +0 -0
  181. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/py.typed +0 -0
  182. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/requestsutils.py +0 -0
  183. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/services/__init__.py +0 -0
  184. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/services/technoteauthor.py +0 -0
  185. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/services/technotemigration.py +0 -0
  186. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/sphinxrunner.py +0 -0
  187. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/stackdocs/__init__.py +0 -0
  188. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/stackdocs/build.py +0 -0
  189. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/stackdocs/data/cppreference-doxygen-web.tag.xml +0 -0
  190. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/stackdocs/data/doxygen.defaults.conf +0 -0
  191. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/stackdocs/data/mainpage.dox +0 -0
  192. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/stackdocs/doxygen.py +0 -0
  193. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/stackdocs/doxygentag.py +0 -0
  194. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/stackdocs/packagecli.py +0 -0
  195. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/stackdocs/pkgdiscovery.py +0 -0
  196. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/stackdocs/rootdiscovery.py +0 -0
  197. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/stackdocs/stackcli.py +0 -0
  198. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/__init__.py +0 -0
  199. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/authordb.py +0 -0
  200. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/latex.py +0 -0
  201. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/localtemplates/technote/Makefile +0 -0
  202. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/localtemplates/technote/README.rst +0 -0
  203. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/localtemplates/technote/ci.yaml +0 -0
  204. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/localtemplates/technote/conf.py +0 -0
  205. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/localtemplates/technote/dependabot.yml +0 -0
  206. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/localtemplates/technote/gitignore +0 -0
  207. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/localtemplates/technote/pre-commit-config.yaml +0 -0
  208. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/localtemplates/technote/requirements.txt +0 -0
  209. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/localtemplates/technote/tox.ini +0 -0
  210. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/localtemplates.py +0 -0
  211. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/storage/technotetoml.py +0 -0
  212. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/templates/pydata/layout.html +0 -0
  213. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/templates/technote/.gitkeep +0 -0
  214. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/templates/technote/components/.gitkeep +0 -0
  215. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/templates/technote/components/sidebar-source.html +0 -0
  216. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/templates/technote/sections/.gitkeep +0 -0
  217. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/templates/technote/sections/header-article.html +0 -0
  218. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/templates/technote/sections/sidebar-primary.html +0 -0
  219. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/utils.py +0 -0
  220. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer/version.py +0 -0
  221. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer.egg-info/dependency_links.txt +0 -0
  222. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer.egg-info/entry_points.txt +0 -0
  223. {documenteer-1.2.1 → documenteer-1.3.0}/src/documenteer.egg-info/top_level.txt +0 -0
  224. {documenteer-1.2.1 → documenteer-1.3.0}/tests/conftest.py +0 -0
  225. {documenteer-1.2.1 → documenteer-1.3.0}/tests/data/afw.doxygen.conf +0 -0
  226. {documenteer-1.2.1 → documenteer-1.3.0}/tests/data/authordb.yaml +0 -0
  227. {documenteer-1.2.1 → documenteer-1.3.0}/tests/data/doxygen.tag.zip +0 -0
  228. {documenteer-1.2.1 → documenteer-1.3.0}/tests/data/package_alpha/doc/_static/package_alpha/README.md +0 -0
  229. {documenteer-1.2.1 → documenteer-1.3.0}/tests/data/package_alpha/doc/doxygen.conf.in +0 -0
  230. {documenteer-1.2.1 → documenteer-1.3.0}/tests/data/package_alpha/doc/manifest.yaml +0 -0
  231. {documenteer-1.2.1 → documenteer-1.3.0}/tests/data/package_alpha/doc/package.alpha/index.rst +0 -0
  232. {documenteer-1.2.1 → documenteer-1.3.0}/tests/data/package_alpha/doc/package_alpha/index.rst +0 -0
  233. {documenteer-1.2.1 → documenteer-1.3.0}/tests/data/package_alpha/include/README.md +0 -0
  234. {documenteer-1.2.1 → documenteer-1.3.0}/tests/data/package_alpha/src/README.md +0 -0
  235. {documenteer-1.2.1 → documenteer-1.3.0}/tests/data/package_beta/doc/README.md +0 -0
  236. {documenteer-1.2.1 → documenteer-1.3.0}/tests/ext/__init__.py +0 -0
  237. {documenteer-1.2.1 → documenteer-1.3.0}/tests/ext/autocppapi_test.py +0 -0
  238. {documenteer-1.2.1 → documenteer-1.3.0}/tests/ext/lsstdocushare_test.py +0 -0
  239. {documenteer-1.2.1 → documenteer-1.3.0}/tests/ext/lssttasks/__init__.py +0 -0
  240. {documenteer-1.2.1 → documenteer-1.3.0}/tests/ext/lssttasks/taskutils_test.py +0 -0
  241. {documenteer-1.2.1 → documenteer-1.3.0}/tests/ext/mockcoderefs_test.py +0 -0
  242. {documenteer-1.2.1 → documenteer-1.3.0}/tests/ext/packagetoctree_test.py +0 -0
  243. {documenteer-1.2.1 → documenteer-1.3.0}/tests/ext/utils_test.py +0 -0
  244. {documenteer-1.2.1 → documenteer-1.3.0}/tests/packagemetadata_test.py +0 -0
  245. {documenteer-1.2.1 → documenteer-1.3.0}/tests/roots/test-autocppapi/conf.py +0 -0
  246. {documenteer-1.2.1 → documenteer-1.3.0}/tests/roots/test-autocppapi/doxygen.tag.zip +0 -0
  247. {documenteer-1.2.1 → documenteer-1.3.0}/tests/roots/test-autocppapi/index.rst +0 -0
  248. {documenteer-1.2.1 → documenteer-1.3.0}/tests/services/__init__.py +0 -0
  249. {documenteer-1.2.1 → documenteer-1.3.0}/tests/services/technotemigration_test.py +0 -0
  250. {documenteer-1.2.1 → documenteer-1.3.0}/tests/storage/__init__.py +0 -0
  251. {documenteer-1.2.1 → documenteer-1.3.0}/tests/storage/authordb_test.py +0 -0
  252. {documenteer-1.2.1 → documenteer-1.3.0}/tests/storage/technotetoml_test.py +0 -0
  253. {documenteer-1.2.1 → documenteer-1.3.0}/tests/test_stackdocs_build.py +0 -0
  254. {documenteer-1.2.1 → documenteer-1.3.0}/tests/test_stackdocs_doxygen.py +0 -0
  255. {documenteer-1.2.1 → documenteer-1.3.0}/tests/test_stackdocs_doxygentag.py +0 -0
  256. {documenteer-1.2.1 → documenteer-1.3.0}/tests/test_stackdocs_pkgdiscovery.py +0 -0
  257. {documenteer-1.2.1 → documenteer-1.3.0}/tests/test_stackdocs_rootdiscovery.py +0 -0
  258. {documenteer-1.2.1 → documenteer-1.3.0}/tox.ini +0 -0
  259. {documenteer-1.2.1 → documenteer-1.3.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.5.0
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.3.0
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.14.0
30
+ rev: 1.16.0
31
31
  hooks:
32
32
  - id: blacken-docs
33
33
  additional_dependencies: [black==22.12.0]
@@ -2,6 +2,38 @@
2
2
 
3
3
  <!-- scriv-insert-here -->
4
4
 
5
+ <a id='changelog-1.3.0'></a>
6
+ ## 1.3.0 (2024-05-03)
7
+
8
+ ### New features
9
+
10
+ - 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).
11
+
12
+ - 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`).
13
+
14
+ ### Bug fixes
15
+
16
+ - 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`.
17
+
18
+ - 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.
19
+
20
+ - Fix setting the rebuild condition for the `documenteer.ext.githubbibcache` extension.
21
+
22
+ - 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.
23
+
24
+ ### Other changes
25
+
26
+ - 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.
27
+
28
+ <a id='changelog-1.2.2'></a>
29
+ ## 1.2.2 (2024-04-11)
30
+
31
+ ### Bug fixes
32
+
33
+ - Update `jira_uri_template` configuration default to `https://rubinobs.atlassian.net/browse/{issue}`. This will make all :jira:, :jirab:, and :jirap: roles point to the new Jira instance for Rubin Observatory.
34
+ - Drop `jira.lsstcorp.org` from the linkcheck ignore list defaults for `documenteer.config.guide` since that instance is no longer being used.
35
+ - Replace `jira.lsstcorp.org` URLs in documentation to `rubinobs.atlassian.net`.
36
+
5
37
  <a id='changelog-1.2.1'></a>
6
38
  ## 1.2.1 (2024-04-02)
7
39
 
@@ -340,7 +372,7 @@ Fixes:
340
372
  - Individual Stack packages now import `documenteer.conf.pipelinespkg` in their `conf.py` files.
341
373
 
342
374
  The previous configuration sub-package, `documenteer.sphinxconf` is deprecated.
343
- [[DM-20866](https://jira.lsstcorp.org/browse/DM-20866)]
375
+ [[DM-20866](https://rubinobs.atlassian.net/browse/DM-20866)]
344
376
 
345
377
  Overall, the configurations are compatible with these exceptions:
346
378
 
@@ -363,13 +395,13 @@ Fixes:
363
395
  For example, individual packages can add to the `EXCLUDE` tag.
364
396
  By default, each package's `include` directory is included in the Doxygen build.
365
397
 
366
- [[DM-22698](https://jira.lsstcorp.org/browse/DM-22698), [DM-23094](https://jira.lsstcorp.org/browse/DM-23094), [DM-22461](https://jira.lsstcorp.org/browse/DM-22461)]
398
+ [[DM-22698](https://rubinobs.atlassian.net/browse/DM-22698), [DM-23094](https://rubinobs.atlassian.net/browse/DM-23094), [DM-22461](https://rubinobs.atlassian.net/browse/DM-22461)]
367
399
 
368
400
  - Improved Sphinx runner (`documenteer.sphinxrunner`).
369
- [[DM-26768](https://jira.lsstcorp.org/browse/DM-26768)]
401
+ [[DM-26768](https://rubinobs.atlassian.net/browse/DM-26768)]
370
402
 
371
403
  - Added static type checking using [mypy](https://mypy.readthedocs.io/en/stable/).
372
- [[DM-22717](https://jira.lsstcorp.org/browse/DM-22717), [DM-26288](https://jira.lsstcorp.org/browse/DM-26288)]
404
+ [[DM-22717](https://rubinobs.atlassian.net/browse/DM-22717), [DM-26288](https://rubinobs.atlassian.net/browse/DM-26288)]
373
405
 
374
406
  - Improved packaging, testing, and development environment:
375
407
 
@@ -381,7 +413,7 @@ Fixes:
381
413
  - Migrated to `pre-commit` for running linters and code formatters.
382
414
  - Migrated to GitHub Actions from Travis CI.
383
415
 
384
- [`DM-22957 <https://jira.lsstcorp.org/browse/DM-22957>`_, `DM-26288 <https://jira.lsstcorp.org/browse/DM-26288>`_]
416
+ [`DM-22957 <https://rubinobs.atlassian.net/browse/DM-22957>`_, `DM-26288 <https://rubinobs.atlassian.net/browse/DM-26288>`_]
385
417
 
386
418
  - Documentation improvements:
387
419
 
@@ -396,19 +428,19 @@ Fixes:
396
428
 
397
429
  - Technote configuration now uses `yaml.safe_load` instead of `yaml.load`.
398
430
  See the [pyyaml docs for details](https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation).
399
- [[DM-22537](https://jira.lsstcorp.org/browse/DM-22537)]
431
+ [[DM-22537](https://rubinobs.atlassian.net/browse/DM-22537)]
400
432
 
401
433
  ## 0.5.4 (2019-11-03)
402
434
 
403
435
  - This new version of the technote sphinx theme should fix the edition link in the sidebar for non-main editions.
404
- [[DM-20839](https://jira.lsstcorp.org/browse/DM-20839)]
436
+ [[DM-20839](https://rubinobs.atlassian.net/browse/DM-20839)]
405
437
 
406
438
  ## 0.5.3 (2019-08-07)
407
439
 
408
440
  - Enabled the `html_use_index` and `html_domain_indices` configurations for Stack documentation projects to enable automatic index generation.
409
441
  The `genindex` contains links to all command-line options and Python objects (Sphinx's domains).
410
442
  This also opens us up to a more general content index by way of the [index directive](https://www.sphinx-doc.org/en/master/usage/restructuredtext/directives.html#index-generating-markup).
411
- [[DM-20850](https://jira.lsstcorp.org/browse/DM-20850)]
443
+ [[DM-20850](https://rubinobs.atlassian.net/browse/DM-20850)]
412
444
 
413
445
  - Fixed compatibility with docutils 0.15.
414
446
  Now Sphinx will control which version of docutils is used, which should now be 0.15.
@@ -419,7 +451,7 @@ Fixes:
419
451
 
420
452
  - Add [sphinxcontrib.autoprogram](https://sphinxcontrib-autoprogram.readthedocs.io/en/stable/) to enable automated reference documentation of argparse-based command-line scripts.
421
453
  This extension is available with the `documenteer[pipelines]` installation extra and enabled by default for LSST Science Pipelines projects.
422
- [[DM-20767](https://jira.lsstcorp.org/browse/)]
454
+ [[DM-20767](https://rubinobs.atlassian.net/browse/)]
423
455
 
424
456
  - Update the official list of tested and supported Python versions to Python 3.6 and 3.7.
425
457
 
@@ -433,7 +465,7 @@ Fixes:
433
465
  - The stack documentation build now requires that packages be explicitly required by the main documentation project's EUPS table file.
434
466
  Before, a package only needed a `doc/manifest.yaml` file and to be currently set up in the EUPS environment to be linked into the documentation build.
435
467
  This would lead to packages being included in a documentation build despite not being a part of that stack product.
436
- [[DM-17765](https://jira.lsstcorp.org/browse/DM-17765)]
468
+ [[DM-17765](https://rubinobs.atlassian.net/browse/DM-17765)]
437
469
 
438
470
  - This release adds the [sphinx-jinja](https://github.com/tardyp/sphinx-jinja) extension for `documenteer[pipelines]` installations.
439
471
  This extension makes it possible to dynamically create content with Jinja templating.
@@ -453,7 +485,7 @@ Fixes:
453
485
  - `pipelines_demo_ref`
454
486
 
455
487
  These variables are accessible from the `jinja` directive's context.
456
- [[DM-17065](https://jira.lsstcorp.org/browse/DM-17065)]
488
+ [[DM-17065](https://rubinobs.atlassian.net/browse/DM-17065)]
457
489
 
458
490
  - This release also added some new substitutions to the `rst_epilog` of stack-based projects:
459
491
 
@@ -467,7 +499,7 @@ Fixes:
467
499
 
468
500
  - The project's name is also used as the `logotext` at the top of the page for stack-based projects.
469
501
  Previously the `logotext` would always be "LSST Science Pipelines."
470
- [[DM-17263](https://jira.lsstcorp.org/browse/DM-17263)]
502
+ [[DM-17263](https://rubinobs.atlassian.net/browse/DM-17263)]
471
503
 
472
504
  - Added the following projects to the intersphinx inventory of stack-based projects:
473
505
 
@@ -481,18 +513,18 @@ Fixes:
481
513
  ## 0.4.4 (2019-02-05)
482
514
 
483
515
  - Updated scikit-learn's intersphinx inventory URL (now available as HTTPS) in the `documenteer.sphinxconfig.stackconf`.
484
- - Fixed the `lsst-task-config-subtasks` directive so that it can introspect items in an `lsst.pex.config` `Registry` that are wrapped by a `ConfigurableWrapper`. [(DM-17661)[https://jira.lsstcorp.org/browse/DM-17661]]
516
+ - Fixed the `lsst-task-config-subtasks` directive so that it can introspect items in an `lsst.pex.config` `Registry` that are wrapped by a `ConfigurableWrapper`. [(DM-17661)[https://rubinobs.atlassian.net/browse/DM-17661]]
485
517
 
486
518
  ## 0.4.3 (2018-11-30)
487
519
 
488
520
  - Pin [sphinxcontrib-bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex) to version 0.4.0 since later versions are incompatible with Sphinx <1.8.0.
489
- [[DM-16651](https://jira.lsstcorp.org/browse/DM-16651)]
521
+ [[DM-16651](https://rubinobs.atlassian.net/browse/DM-16651)]
490
522
 
491
523
  ## 0.4.2 (2018-11-01)
492
524
 
493
525
  - Handle cases where an object does not have a docstring in `documenteer.sphinxext.lssttasks.taskutils.get_docstring`.
494
526
  This improves the reliability of the `lsst-task-api-summary` directive.
495
- See (DM-16102)(https://jira.lsstcorp.org/browse/DM-16102).
527
+ See (DM-16102)(https://rubinobs.atlassian.net/browse/DM-16102).
496
528
 
497
529
  ## 0.4.1 (2018-10-15)
498
530
 
@@ -521,7 +553,7 @@ Fixes:
521
553
  This configuration is critical:
522
554
 
523
555
  1. It is actually responsible for ensuring that inherited members of classes appear in our docs.
524
- 2. Without this, classes that have a `__slots__` attribute (typically through inheritance of a `collections.abc` class) won't have *any* of their members documented. See (DM-16102)(https://jira.lsstcorp.org/browse/DM-16102) for discussion.
556
+ 2. Without this, classes that have a `__slots__` attribute (typically through inheritance of a `collections.abc` class) won't have *any* of their members documented. See (DM-16102)(https://rubinobs.atlassian.net/browse/DM-16102) for discussion.
525
557
 
526
558
  - `todo` directives are now hidden when using `build_pipelines_lsst_io_configs`.
527
559
  They are still shown, by default, for standalone package documentation builds, which are primarily developer-facing.
@@ -650,7 +682,7 @@ Fixes:
650
682
 
651
683
  ## 0.1.10 (2016-12-14)
652
684
 
653
- Includes prototype support for LSST Science Pipelines documentation, as part of `DM-6199 <https://jira.lsstcorp.org/browse/DM-6199>`__:
685
+ Includes prototype support for LSST Science Pipelines documentation, as part of `DM-6199 <https://rubinobs.atlassian.net/browse/DM-6199>`__:
654
686
 
655
687
  - Added dependencies to [breathe](http://breathe.readthedocs.io/en/latest/), [astropy-helpers](https://github.com/astropy/astropy-helpers) and the [lsst-sphinx-bootstrap-theme](https://github.com/lsst-sqre/lsst-sphinx-bootstrap-theme) to generally coordinate LSST Science Pipelines documentation dependencies.
656
688
  - Created `documenteer.sphinxconfig.stackconf` module to centrally coordinate Science Pipelines documentation configuration. Much of the configuration is based on [astropy-helper's Sphinx configuration](https://github.com/astropy/astropy-helpers/blob/master/astropy_helpers/sphinx/conf.py) since the LSST Science Pipelines documentation is heavily based upon Astropy's Sphinx theme and API reference generation infrastructure.
@@ -685,7 +717,7 @@ Includes prototype support for LSST Science Pipelines documentation, as part of
685
717
 
686
718
  ## 0.1.3 (2016-05-24)
687
719
 
688
- - Add roles for linking to ls.st links: `lpm`, `ldm`, and `lse`. DM-6181.
720
+ - Add roles for linking to `ls.st` links: `lpm`, `ldm`, and `lse`. DM-6181.
689
721
  - Add roles for linking to JIRA tickets: `jira`, `jirab`, and `jirap`. DM-6181.
690
722
 
691
723
  ## 0.1.2 (2016-05-14)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: documenteer
3
- Version: 1.2.1
3
+ Version: 1.3.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.8.0,>=0.7.0; extra == "technote"
107
+ Requires-Dist: technote<0.9.0,>=0.8.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
  [![Documentation](https://img.shields.io/badge/documenteer-lsst.io-brightgreen.svg)](https://documenteer.lsst.io)
113
116
  [![PyPI](https://img.shields.io/pypi/v/documenteer.svg?style=flat-square)](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
+ }
@@ -21,7 +21,7 @@
21
21
  "\n",
22
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
23
  "\n",
24
- "A parenthetical citation {cite:p}`2017arXiv170309824V`. And a textual citation {cite:t}`2017arXiv170309824V`."
24
+ "A parenthetical citation {cite:p}`SQR-083`. And a textual citation {cite:t}`SQR-083`."
25
25
  ]
26
26
  },
27
27
  {
@@ -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
+ }
@@ -10,7 +10,7 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin facilisis pharetr
10
10
 
11
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
12
 
13
- A parenthetical citation {cite:p}`2017arXiv170309824V`. And a textual citation {cite:t}`2017arXiv170309824V`.
13
+ A parenthetical citation {cite:p}`SQR-083`. And a textual citation {cite:t}`SQR-083`.
14
14
 
15
15
  ## Method
16
16
 
@@ -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:`2017arXiv170309824V`. And a textual citation :cite:t:`2017arXiv170309824V`.
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
  ======