promnesia 1.2.20240810__tar.gz → 1.4.20250909__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 (1090) hide show
  1. promnesia-1.4.20250909/.ci/end2end/Dockerfile +19 -0
  2. promnesia-1.4.20250909/.ci/end2end/scripts/build_and_run_tests.sh +19 -0
  3. promnesia-1.4.20250909/.ci/github-ci-compat +20 -0
  4. promnesia-1.4.20250909/.ci/release-uv +56 -0
  5. promnesia-1.4.20250909/.ci/run +44 -0
  6. promnesia-1.4.20250909/.github/workflows/main.yml +201 -0
  7. promnesia-1.4.20250909/CHANGELOG.org +38 -0
  8. promnesia-1.4.20250909/PKG-INFO +66 -0
  9. promnesia-1.4.20250909/README.org +418 -0
  10. promnesia-1.4.20250909/conftest.py +57 -0
  11. promnesia-1.4.20250909/doc/SOURCES.org +243 -0
  12. promnesia-1.4.20250909/doc/config.py +171 -0
  13. promnesia-1.4.20250909/docker/docker_files/Dockerfile +17 -0
  14. promnesia-1.4.20250909/docker/docker_files/Dockerfile-indexer +7 -0
  15. promnesia-1.4.20250909/docker/docker_files/docker-compose.yaml +29 -0
  16. promnesia-1.4.20250909/docker/start.sh +6 -0
  17. promnesia-1.4.20250909/mypy.ini +18 -0
  18. promnesia-1.4.20250909/pyproject.toml +150 -0
  19. promnesia-1.4.20250909/pytest.ini +22 -0
  20. promnesia-1.4.20250909/ruff.toml +108 -0
  21. promnesia-1.4.20250909/scripts/browser_history.py +142 -0
  22. promnesia-1.4.20250909/src/promnesia/__init__.py +20 -0
  23. promnesia-1.4.20250909/src/promnesia/__main__.py +460 -0
  24. promnesia-1.4.20250909/src/promnesia/cannon.py +866 -0
  25. promnesia-1.4.20250909/src/promnesia/common.py +626 -0
  26. promnesia-1.4.20250909/src/promnesia/compare.py +161 -0
  27. promnesia-1.4.20250909/src/promnesia/compat.py +12 -0
  28. promnesia-1.4.20250909/src/promnesia/config.py +167 -0
  29. promnesia-1.4.20250909/src/promnesia/database/common.py +67 -0
  30. promnesia-1.4.20250909/src/promnesia/database/dump.py +187 -0
  31. promnesia-1.4.20250909/src/promnesia/database/load.py +50 -0
  32. promnesia-1.4.20250909/src/promnesia/extract.py +106 -0
  33. promnesia-1.4.20250909/src/promnesia/logging.py +168 -0
  34. promnesia-1.4.20250909/src/promnesia/misc/install_server.py +159 -0
  35. promnesia-1.4.20250909/src/promnesia/server.py +497 -0
  36. promnesia-1.4.20250909/src/promnesia/sources/auto.py +392 -0
  37. promnesia-1.4.20250909/src/promnesia/sources/auto_logseq.py +15 -0
  38. promnesia-1.4.20250909/src/promnesia/sources/auto_obsidian.py +8 -0
  39. promnesia-1.4.20250909/src/promnesia/sources/browser.py +99 -0
  40. promnesia-1.4.20250909/src/promnesia/sources/browser_legacy.py +313 -0
  41. promnesia-1.4.20250909/src/promnesia/sources/demo.py +35 -0
  42. promnesia-1.4.20250909/src/promnesia/sources/fbmessenger.py +35 -0
  43. promnesia-1.4.20250909/src/promnesia/sources/filetypes.py +156 -0
  44. promnesia-1.4.20250909/src/promnesia/sources/github.py +90 -0
  45. promnesia-1.4.20250909/src/promnesia/sources/guess.py +38 -0
  46. promnesia-1.4.20250909/src/promnesia/sources/hackernews.py +38 -0
  47. promnesia-1.4.20250909/src/promnesia/sources/hpi.py +13 -0
  48. promnesia-1.4.20250909/src/promnesia/sources/html.py +47 -0
  49. promnesia-1.4.20250909/src/promnesia/sources/hypothesis.py +49 -0
  50. promnesia-1.4.20250909/src/promnesia/sources/instapaper.py +33 -0
  51. promnesia-1.4.20250909/src/promnesia/sources/markdown.py +145 -0
  52. promnesia-1.4.20250909/src/promnesia/sources/org.py +195 -0
  53. promnesia-1.4.20250909/src/promnesia/sources/plaintext.py +118 -0
  54. promnesia-1.4.20250909/src/promnesia/sources/pocket.py +36 -0
  55. promnesia-1.4.20250909/src/promnesia/sources/reddit.py +170 -0
  56. promnesia-1.4.20250909/src/promnesia/sources/roamresearch.py +51 -0
  57. promnesia-1.4.20250909/src/promnesia/sources/rss.py +26 -0
  58. promnesia-1.4.20250909/src/promnesia/sources/shellcmd.py +95 -0
  59. promnesia-1.4.20250909/src/promnesia/sources/signal.py +443 -0
  60. promnesia-1.4.20250909/src/promnesia/sources/smscalls.py +32 -0
  61. promnesia-1.4.20250909/src/promnesia/sources/stackexchange.py +22 -0
  62. promnesia-1.4.20250909/src/promnesia/sources/takeout.py +210 -0
  63. promnesia-1.4.20250909/src/promnesia/sources/takeout_legacy.py +134 -0
  64. promnesia-1.4.20250909/src/promnesia/sources/telegram.py +90 -0
  65. promnesia-1.4.20250909/src/promnesia/sources/telegram_legacy.py +128 -0
  66. promnesia-1.4.20250909/src/promnesia/sources/twitter.py +60 -0
  67. promnesia-1.4.20250909/src/promnesia/sources/vcs.py +46 -0
  68. promnesia-1.4.20250909/src/promnesia/sources/viber.py +180 -0
  69. promnesia-1.4.20250909/src/promnesia/sources/website.py +58 -0
  70. promnesia-1.4.20250909/src/promnesia/sources/zulip.py +26 -0
  71. promnesia-1.4.20250909/src/promnesia/sqlite.py +48 -0
  72. promnesia-1.4.20250909/src/promnesia/tests/common.py +142 -0
  73. promnesia-1.4.20250909/src/promnesia/tests/server_helper.py +67 -0
  74. promnesia-1.4.20250909/src/promnesia/tests/sources/test_auto.py +65 -0
  75. promnesia-1.4.20250909/src/promnesia/tests/sources/test_filetypes.py +45 -0
  76. promnesia-1.4.20250909/src/promnesia/tests/sources/test_hypothesis.py +43 -0
  77. promnesia-1.4.20250909/src/promnesia/tests/sources/test_org.py +69 -0
  78. promnesia-1.4.20250909/src/promnesia/tests/sources/test_plaintext.py +27 -0
  79. promnesia-1.4.20250909/src/promnesia/tests/sources/test_shellcmd.py +22 -0
  80. promnesia-1.4.20250909/src/promnesia/tests/sources/test_takeout.py +56 -0
  81. promnesia-1.4.20250909/src/promnesia/tests/test_cannon.py +342 -0
  82. promnesia-1.4.20250909/src/promnesia/tests/test_cli.py +46 -0
  83. promnesia-1.4.20250909/src/promnesia/tests/test_compare.py +34 -0
  84. promnesia-1.4.20250909/src/promnesia/tests/test_config.py +289 -0
  85. promnesia-1.4.20250909/src/promnesia/tests/test_db_dump.py +223 -0
  86. promnesia-1.4.20250909/src/promnesia/tests/test_extract.py +68 -0
  87. promnesia-1.4.20250909/src/promnesia/tests/test_indexer.py +251 -0
  88. promnesia-1.4.20250909/src/promnesia/tests/test_server.py +291 -0
  89. promnesia-1.4.20250909/src/promnesia/tests/test_traverse.py +39 -0
  90. promnesia-1.4.20250909/src/promnesia/tests/utils.py +31 -0
  91. promnesia-1.4.20250909/tests/addon.py +367 -0
  92. promnesia-1.4.20250909/tests/addon_helper.py +171 -0
  93. promnesia-1.4.20250909/tests/common.py +80 -0
  94. promnesia-1.4.20250909/tests/convert_screencast.py +53 -0
  95. promnesia-1.4.20250909/tests/demos.py +822 -0
  96. promnesia-1.4.20250909/tests/end2end_test.py +866 -0
  97. promnesia-1.4.20250909/tests/record.py +133 -0
  98. promnesia-1.4.20250909/tests/testdata/hypexport/.ci/run +40 -0
  99. promnesia-1.4.20250909/tests/testdata/hypexport/.git +1 -0
  100. promnesia-1.4.20250909/tests/testdata/hypexport/.github/workflows/main.yml +58 -0
  101. promnesia-1.4.20250909/tests/testdata/hypexport/.gitignore +160 -0
  102. promnesia-1.4.20250909/tests/testdata/hypexport/.gitmodules +9 -0
  103. promnesia-1.4.20250909/tests/testdata/hypexport/LICENSE +21 -0
  104. promnesia-1.4.20250909/tests/testdata/hypexport/README.org +54 -0
  105. promnesia-1.4.20250909/tests/testdata/hypexport/conftest.py +38 -0
  106. promnesia-1.4.20250909/tests/testdata/hypexport/dal.py +47 -0
  107. promnesia-1.4.20250909/tests/testdata/hypexport/export.py +47 -0
  108. promnesia-1.4.20250909/tests/testdata/hypexport/mypy.ini +17 -0
  109. promnesia-1.4.20250909/tests/testdata/hypexport/pyproject.toml +62 -0
  110. promnesia-1.4.20250909/tests/testdata/hypexport/pytest.ini +16 -0
  111. promnesia-1.4.20250909/tests/testdata/hypexport/ruff.toml +29 -0
  112. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/.git +1 -0
  113. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/LICENSE +201 -0
  114. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/README.md +47 -0
  115. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/hypothesis/__init__.py +2 -0
  116. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/hypothesis/hypothesis.py +316 -0
  117. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/tests/test.py +183 -0
  118. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/__init__.py +7 -0
  119. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/dal.py +202 -0
  120. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/export.py +54 -0
  121. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/exporthelpers/.git +1 -0
  122. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/exporthelpers/__init__.py +4 -0
  123. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/exporthelpers/dal_helper.py +177 -0
  124. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/exporthelpers/export_helper.py +143 -0
  125. promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/exporthelpers/logging_helper.py +241 -0
  126. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/.git +1 -0
  127. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/.gitignore +6 -0
  128. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/README.md +1 -0
  129. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_config.yml +8 -0
  130. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_data/annotations.json +10257 -0
  131. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_data/categories.yml +26 -0
  132. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_data/documents.yml +59 -0
  133. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_data/polemictweet.yml +37 -0
  134. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/badge.html +18 -0
  135. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/card.quote.html +30 -0
  136. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/contributors.html +0 -0
  137. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/count.html +34 -0
  138. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/discussions.html +13 -0
  139. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/documents.html +85 -0
  140. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/highlights.html +51 -0
  141. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/replies.html +7 -0
  142. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/reply.html +21 -0
  143. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/sidebar.html +77 -0
  144. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/thread.html +0 -0
  145. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/threads.html +17 -0
  146. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_layouts/default.html +35 -0
  147. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_layouts/none.html +1 -0
  148. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/api/annotations.json +7169 -0
  149. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/css/main.scss +100 -0
  150. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/data/annotations.json +10008 -0
  151. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/glossary.html +99 -0
  152. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/graph.html +93 -0
  153. promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/index.html +63 -0
  154. promnesia-1.4.20250909/tests/testdata/hypexport/tox.ini +47 -0
  155. promnesia-1.4.20250909/tests/testdata/ox-hugo/.git +1 -0
  156. promnesia-1.4.20250909/tests/testdata/ox-hugo/.github/ISSUE_TEMPLATE.md +45 -0
  157. promnesia-1.4.20250909/tests/testdata/ox-hugo/.gitignore +7 -0
  158. promnesia-1.4.20250909/tests/testdata/ox-hugo/.gitmodules +12 -0
  159. promnesia-1.4.20250909/tests/testdata/ox-hugo/.travis.yml +42 -0
  160. promnesia-1.4.20250909/tests/testdata/ox-hugo/CONTRIBUTING.org +59 -0
  161. promnesia-1.4.20250909/tests/testdata/ox-hugo/LICENSE +674 -0
  162. promnesia-1.4.20250909/tests/testdata/ox-hugo/Makefile +265 -0
  163. promnesia-1.4.20250909/tests/testdata/ox-hugo/README.org +485 -0
  164. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/.htmltest.yml +94 -0
  165. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/config.toml +114 -0
  166. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/content/.git_keep +0 -0
  167. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/data/users.toml +430 -0
  168. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/doc-setupfile.org +22 -0
  169. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/export-gh-doc-old.el +60 -0
  170. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/github-files.org +72 -0
  171. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/layouts/_default/examples.html +161 -0
  172. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/layouts/section/doc.html +7 -0
  173. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/layouts/section/issues.html +7 -0
  174. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/layouts/section/test.html +7 -0
  175. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/ox-hugo-export-gh-doc.el +56 -0
  176. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/ox-hugo-manual.org +3162 -0
  177. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/_headers +59 -0
  178. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/_redirects +3 -0
  179. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/css/github_chroma.css +71 -0
  180. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/css/style.css +173 -0
  181. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/css/trac_chroma.css +65 -0
  182. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/css/trac_pygments.css +67 -0
  183. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/favicon-196x196.png +0 -0
  184. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/favicon.ico +0 -0
  185. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/images-in-content-screenshot.png +0 -0
  186. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/one-post-per-file.png +0 -0
  187. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/one-post-per-subtree.png +0 -0
  188. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/org-mode-unicorn-logo-200px.png +0 -0
  189. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/org-mode-unicorn-logo-50px.png +0 -0
  190. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/ox-hugo-doc-source-viewing-in-Termux-Android.png +0 -0
  191. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/.git +1 -0
  192. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/LICENSE +674 -0
  193. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/README.org +10 -0
  194. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/layouts/partials/debugprint.css +51 -0
  195. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/layouts/partials/debugprint.html +219 -0
  196. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/layouts/shortcodes/debug.html +20 -0
  197. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/theme.toml +15 -0
  198. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/.git +1 -0
  199. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/.gitmodules +3 -0
  200. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/LICENSE +36 -0
  201. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/README.md +74 -0
  202. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/config.toml +1 -0
  203. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/LICENSE +21 -0
  204. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/README.md +25 -0
  205. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/config.toml +56 -0
  206. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/_index.md +10 -0
  207. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/about.md +22 -0
  208. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/post/creating-a-new-theme.md +1488 -0
  209. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/post/goisforlovers.md +400 -0
  210. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/post/hugoisforlovers.md +99 -0
  211. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/post/migrate-from-jekyll.md +219 -0
  212. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/exampleSite.org +2001 -0
  213. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/layouts/.gitkeep +0 -0
  214. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/static/.gitignore +0 -0
  215. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/static/css/github_chroma.css +72 -0
  216. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/.ignore +1 -0
  217. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/.git +1 -0
  218. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/LICENSE +674 -0
  219. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/README.org +60 -0
  220. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/layouts/_default/search.html +38 -0
  221. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/layouts/_default/search.json +5 -0
  222. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/static/js/libs/.ignore +1 -0
  223. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/static/js/libs/fuse.js/3.2.1/fuse.min.js +9 -0
  224. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/static/js/libs/jquery/3.3.1/jquery.min.js +2 -0
  225. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/static/js/libs/jquery/3.3.1/jquery.slim.min.js +2 -0
  226. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/static/js/libs/mark.js/8.11.1/jquery.mark.min.js +7 -0
  227. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/static/js/search.js +100 -0
  228. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/theme.toml +15 -0
  229. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/404.html +5 -0
  230. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/_default/baseof.html +40 -0
  231. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/_default/li.html +8 -0
  232. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/_default/search.json +5 -0
  233. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/_default/single.html +26 -0
  234. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/index.html +8 -0
  235. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/author.html +11 -0
  236. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/date-maybe.html +5 -0
  237. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/footer.html +27 -0
  238. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/head.html +46 -0
  239. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/headline-hash.html +1 -0
  240. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/mathjax.html +11 -0
  241. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/opengraph.html +92 -0
  242. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/sidebar/buttons.html +31 -0
  243. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/sidebar/donate.html +7 -0
  244. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/sidebar/menu.html +11 -0
  245. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/sidebar/relations.html +12 -0
  246. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/sidebar/sidebar.html +23 -0
  247. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/summary_minus_toc.html +27 -0
  248. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/toc_on_side.html +41 -0
  249. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/twitter_cards.html +38 -0
  250. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/shortcodes/admonition.html +4 -0
  251. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/shortcodes/figure.html +33 -0
  252. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/netlify.toml +8 -0
  253. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/css/basic.css +599 -0
  254. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/css/highlight.css +86 -0
  255. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/css/onyx.css +814 -0
  256. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/favicon.ico +0 -0
  257. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/images/forkme_right_darkblue_ribbon.png +0 -0
  258. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/js/libs/jquery/3.3.1/jquery.min.js +2 -0
  259. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/js/libs/jquery/3.3.1/jquery.slim.min.js +2 -0
  260. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/js/mathjax-config.js +5 -0
  261. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/theme.toml +18 -0
  262. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/.git +1 -0
  263. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/LICENSE +674 -0
  264. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/README.md +89 -0
  265. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/layouts/_default/search.html +55 -0
  266. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/layouts/_default/search.json +5 -0
  267. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/.ignore +1 -0
  268. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/fuse.js/3.2.1/fuse.min.js +9 -0
  269. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/iecompat/fetch.min.js +46 -0
  270. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/iecompat/promises.min.js +1 -0
  271. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/iecompat/remove.min.js +1 -0
  272. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/iecompat/template.min.js +11 -0
  273. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/mark.js/9.0.0/mark.min.js +13 -0
  274. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/search.js +98 -0
  275. promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/theme.toml +15 -0
  276. promnesia-1.4.20250909/tests/testdata/ox-hugo/org-hugo-auto-export-mode.el +46 -0
  277. promnesia-1.4.20250909/tests/testdata/ox-hugo/ox-blackfriday.el +1239 -0
  278. promnesia-1.4.20250909/tests/testdata/ox-hugo/ox-hugo-pandoc-cite.el +346 -0
  279. promnesia-1.4.20250909/tests/testdata/ox-hugo/ox-hugo.el +4330 -0
  280. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/issue-272-chkbox-items-to-front-matter.el +47 -0
  281. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/setup-ox-hugo.el +304 -0
  282. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/README.org +12 -0
  283. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/archetypes/default.md +5 -0
  284. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/config.toml +53 -0
  285. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/_index.md +9 -0
  286. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/alias-test/alias-without-section-2.md +9 -0
  287. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/articles/article-1.md +14 -0
  288. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/articles/article-2.md +10 -0
  289. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/articles/emacs/hugo-section-frag-post-in-articles-emacs.md +6 -0
  290. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/_index.md +30 -0
  291. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter1/_index.md +6 -0
  292. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter1/section1.md +6 -0
  293. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter1/section2.md +6 -0
  294. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter2/_index.md +6 -0
  295. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter2/section1.md +6 -0
  296. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter2/section2.md +6 -0
  297. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundle-concat/articles/_index.md +9 -0
  298. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundle-concat/articles/article-one/_index.md +7 -0
  299. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundle-concat/articles/article-one/chapter-one/_index.md +8 -0
  300. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundle-concat/articles/article-one/chapter-one/section-1a.md +7 -0
  301. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundle-concat/articles/article-one/chapter-one/section-1b.md +7 -0
  302. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/_index.md +7 -0
  303. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/headless-page-bundle-x/bar.md +7 -0
  304. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/headless-page-bundle-x/foo.md +7 -0
  305. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/headless-page-bundle-x/index.md +30 -0
  306. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/headless-page-bundle-x/zoo.md +7 -0
  307. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-a/bar.md +7 -0
  308. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-a/copy-2-of-unicorn-logo.png +0 -0
  309. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-a/foo.md +7 -0
  310. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-a/index.md +73 -0
  311. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-b/copy-2-of-unicorn-logo.png +0 -0
  312. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-b/index.md +9 -0
  313. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/dir-locals-test/dir-locals-test.md +57 -0
  314. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/exclude_tags_tests/post1.md +6 -0
  315. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/page-bundle-images-in-same-dir/gnu.png +0 -0
  316. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/page-bundle-images-in-same-dir/images/org-copy-1.png +0 -0
  317. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/page-bundle-images-in-same-dir/index.md +18 -0
  318. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/page-bundle-images-in-same-dir/org-copy-2.png +0 -0
  319. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/post1.md +27 -0
  320. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/post2.md +27 -0
  321. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/post3.md +27 -0
  322. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/post4.md +27 -0
  323. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/325/index.md +42 -0
  324. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/333.md +10 -0
  325. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/335/index.md +10 -0
  326. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/336_test.md +32 -0
  327. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/360-bundle/index.md +10 -0
  328. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/360-bundle/org.png +0 -0
  329. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/360.md +10 -0
  330. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/org-copy-3.png +0 -0
  331. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alert-short-code-lookalike.md +175 -0
  332. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alias-different-section.md +6 -0
  333. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alias-multiple-with-section.md +6 -0
  334. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alias-multiple-without-section.md +6 -0
  335. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alias-root-section.md +6 -0
  336. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alias-without-section-1.md +9 -0
  337. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/allow-empty-titles-1.md +7 -0
  338. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/allow-empty-titles-2.md +7 -0
  339. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/audio-front-matter.md +9 -0
  340. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/auto-set-lastmod.md +8 -0
  341. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-ext-enabling-disabling-toml.md +68 -0
  342. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-ext-enabling-disabling-yaml.md +68 -0
  343. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-ext-hardlinebreak-toml.md +13 -0
  344. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-ext-hardlinebreak-wrong-case-toml.md +32 -0
  345. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-ext-hardlinebreak-yaml.md +13 -0
  346. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-fractions-false.md +34 -0
  347. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-fractions-true.md +35 -0
  348. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/cat-a-and-cat-b.md +8 -0
  349. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/cat-a-post-1.md +9 -0
  350. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/center-align.md +40 -0
  351. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/checklist.md +32 -0
  352. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citation-forms-apa-csl.md +105 -0
  353. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citation-forms.md +102 -0
  354. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citation-linking.md +58 -0
  355. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citations-example-toml.md +127 -0
  356. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citations-example-yaml.md +67 -0
  357. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citations-none.md +8 -0
  358. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citations-with-captions/index.md +65 -0
  359. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citations-with-captions/nested-boxes.svg +20 -0
  360. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/code-fenced-src-blocks-default.md +84 -0
  361. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/code-fenced-src-blocks-with-backticks.md +57 -0
  362. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/code-fenced-src-blocks.md +85 -0
  363. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/consecutive-quotes.md +23 -0
  364. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/consecutive-verses.md +39 -0
  365. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-creator.md +8 -0
  366. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-fm-convert-chkbox-list-to-fm-1.md +16 -0
  367. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-fm-convert-chkbox-list-to-fm-2.md +16 -0
  368. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-multiple-lines.md +34 -0
  369. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-one-line.md +12 -0
  370. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-with-list-values-toml.md +12 -0
  371. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-with-list-values-yaml.md +12 -0
  372. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-with-nested-maps-toml.md +27 -0
  373. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-with-nested-maps-yaml.md +27 -0
  374. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-just-date.md +8 -0
  375. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-org-time-stamp.md +8 -0
  376. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-plus-time-minus-utc.md +6 -0
  377. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-plus-time-plus-utc.md +6 -0
  378. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-plus-time-utc.md +6 -0
  379. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-plus-time.md +6 -0
  380. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-with-only-date.md +6 -0
  381. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-with-time-and-time-zone.md +6 -0
  382. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-with-time.md +6 -0
  383. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/dealing-with-underscores.md +17 -0
  384. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--default-h.md +31 -0
  385. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--h1.md +34 -0
  386. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--h2.md +33 -0
  387. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--h5.md +30 -0
  388. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--h6--offset0.md +29 -0
  389. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--h6.md +30 -0
  390. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/default-creator.md +9 -0
  391. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-multi-line-escaping-backslashes-org-special-block-toml.md +11 -0
  392. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-multi-line-escaping-backslashes-org-special-block-yaml.md +10 -0
  393. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-multi-line-org-special-block-toml.md +17 -0
  394. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-multi-line-org-special-block-yaml.md +18 -0
  395. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-single-line-escaping-backslashes-org-special-block-toml.md +8 -0
  396. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-single-line-escaping-backslashes-org-special-block-yaml.md +8 -0
  397. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-single-line-org-special-block-toml.md +8 -0
  398. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-single-line-org-special-block-yaml.md +8 -0
  399. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-special-block-description.md +10 -0
  400. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/details-and-summary.md +235 -0
  401. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/disable-author.md +8 -0
  402. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/disable-title-1.md +7 -0
  403. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/disable-title-2.md +7 -0
  404. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/disabling-pandoc-citations-in-a-subtree-empty-string.md +12 -0
  405. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/disabling-pandoc-citations-in-a-subtree-nil-string.md +12 -0
  406. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/dont-leak-subheading-tags.md +15 -0
  407. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/draft-state-other-headings-draft.md +12 -0
  408. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/draft-state-todo.md +12 -0
  409. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/duplicate-authors.md +16 -0
  410. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/emacs-post-1.md +8 -0
  411. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/emacs-post-2.md +8 -0
  412. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/embedded-video.md +14 -0
  413. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/en/date-and-slug-inheritance.en.md +12 -0
  414. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/en-dash-em-dash-hellip-in-titles.md +10 -0
  415. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/equation-latex-frag.md +49 -0
  416. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/equations-bf-escaping.md +75 -0
  417. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/equations-with-r-c.md +36 -0
  418. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/es/date-and-slug-inheritance.es.md +12 -0
  419. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/escaping-hashes-and-exclamations-in-body.md +29 -0
  420. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-block-following-a-list.md +36 -0
  421. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-block-inside-quote-block.md +15 -0
  422. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-block-with-escaped-org-inside-quote-block.md +16 -0
  423. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-block-with-line-numbers.md +40 -0
  424. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-blocks-inside-quote-block-and-another-example-block.md +25 -0
  425. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-blocks-with-attr-html.md +21 -0
  426. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-simple.md +10 -0
  427. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/expiry-date-deadline.md +12 -0
  428. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/expiry-date-hugo-compatible-date.md +9 -0
  429. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/expiry-date-org-time-stamp.md +9 -0
  430. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export-without-emphasize.md +12 -0
  431. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_block_html.md +74 -0
  432. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_block_hugo.md +7 -0
  433. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_block_markdown.md +10 -0
  434. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_snippet_html.md +8 -0
  435. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_snippet_hugo.md +14 -0
  436. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_snippet_markdown.md +16 -0
  437. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/external-links.md +46 -0
  438. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/figure-shortcode-and-attr-html.md +153 -0
  439. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/filling-is-not-preserved.md +7 -0
  440. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/filling-is-preserved.md +13 -0
  441. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/filling-not-preserved-for-chinese-characters--preserve-filling-off.md +10 -0
  442. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/filling-not-preserved-for-chinese-characters--preserve-filling-on.md +16 -0
  443. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/footnotes-1.md +13 -0
  444. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/footnotes-2.md +10 -0
  445. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/footnotes-bind-to-preceding-word.md +169 -0
  446. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/footnotes-in-a-row.md +11 -0
  447. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/force-line-break.md +13 -0
  448. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/force-ordered-list-numbering.md +39 -0
  449. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/front-matter-bigint-value.md +20 -0
  450. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/front-matter-toml-toml-extra.md +34 -0
  451. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/front-matter-toml-yaml-extra.md +19 -0
  452. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/front-matter-yaml-toml-extra.md +19 -0
  453. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/front-matter-yaml-yaml-extra.md +30 -0
  454. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/general-formatting.md +23 -0
  455. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/header-image-using-resources/index.md +53 -0
  456. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/header-image-using-resources/stay_hungry_stay_foolish__quotefancy_dot_com.featured.jpg +1 -0
  457. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/highlight-shortcode-src-blocks.md +85 -0
  458. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-auto-weight-ineffective-for-per-file-exports.md +11 -0
  459. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-false-todo-state-done.md +7 -0
  460. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-false-todo-state-draft.md +8 -0
  461. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-false-todo-state-none.md +8 -0
  462. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-none-todo-state-done.md +9 -0
  463. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-none-todo-state-draft.md +7 -0
  464. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-none-todo-state-none.md +8 -0
  465. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-none-todo-state-test-done.md +9 -0
  466. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-none-todo-state-test-todo.md +8 -0
  467. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-true-todo-state-done.md +9 -0
  468. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-true-todo-state-draft.md +13 -0
  469. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-true-todo-state-none.md +8 -0
  470. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-menu-as-keyword--post-with-menu-1.md +7 -0
  471. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-menu-as-keyword--post-with-menu-2.md +7 -0
  472. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-menu-as-keyword--post-with-menu-3.md +7 -0
  473. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-menu-as-keyword--post-with-menu-4.md +7 -0
  474. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-menu-as-keyword--post-with-menu-5.md +7 -0
  475. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-1.md +6 -0
  476. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-123.md +6 -0
  477. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-2.md +6 -0
  478. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-3.md +6 -0
  479. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-4.md +6 -0
  480. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-4567.md +6 -0
  481. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-5.md +6 -0
  482. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphen-categories-dont-prefer.md +5 -0
  483. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphen-categories-prefer.md +5 -0
  484. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphen-tags-dont-prefer.md +5 -0
  485. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphen-tags-prefer.md +5 -0
  486. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphens-and-spaces-in-categories.md +10 -0
  487. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphens-and-spaces-in-tags.md +5 -0
  488. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/image-captions.md +15 -0
  489. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/image-links.md +151 -0
  490. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/images-multiple.md +9 -0
  491. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/images-single.md +9 -0
  492. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/indented-equations.md +33 -0
  493. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/inheriting-tags.md +19 -0
  494. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/inline-images.md +68 -0
  495. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/inlined-svg.md +55 -0
  496. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/invalid-date.md +20 -0
  497. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/invalid-nocites.md +15 -0
  498. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/italicize-links-with-underscores.md +32 -0
  499. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/kbd-tag-default.md +13 -0
  500. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/kbd-tag-no.md +22 -0
  501. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/kbd-tag-yes.md +14 -0
  502. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/keyword-collection.md +95 -0
  503. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/keywords-set-using-multiple-properties.md +6 -0
  504. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/lastmod-date-hugo-compatible-date.md +8 -0
  505. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/lastmod-date-org-time-stamp.md +9 -0
  506. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/lastmod-not-suppressed-suppress-period-zero.md +16 -0
  507. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/lastmod-set-manually-dont-suppress.md +19 -0
  508. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/layout-front-matter.md +13 -0
  509. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/level-offset-0.md +13 -0
  510. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/level-offset-1.md +13 -0
  511. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/level-offset-2.md +13 -0
  512. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/level-offset-default.md +105 -0
  513. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/level-offset-unset.md +17 -0
  514. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/link-destination.md +12 -0
  515. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/link-heading-custom-id.md +227 -0
  516. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/link-to-headings-by-name.md +61 -0
  517. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-outside-the-same-post.md +82 -0
  518. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-to-equations.md +78 -0
  519. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-to-images.md +101 -0
  520. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-to-org-targets.md +76 -0
  521. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-to-source-blocks.md +125 -0
  522. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-to-tables.md +115 -0
  523. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-with-target-attribute.md +42 -0
  524. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/linktitle-front-matter.md +9 -0
  525. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/list-following-a-list.md +76 -0
  526. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/list-has-example-block-with-list-syntax.md +43 -0
  527. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/list-has-src-block-but-no-list-syntax.md +18 -0
  528. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/list-has-src-block-with-list-syntax.md +43 -0
  529. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/lists-with-attr-html.md +68 -0
  530. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/locale-auto-detect.md +10 -0
  531. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/locale-specified.md +10 -0
  532. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/markup-front-matter.md +9 -0
  533. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-alist-meta-data-toml-override-full.md +12 -0
  534. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-alist-meta-data-toml-override-partial.md +21 -0
  535. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-meta-data-yaml.md +18 -0
  536. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-meta-data-yaml2.md +16 -0
  537. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-meta-data-yaml3.md +18 -0
  538. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-title-property.md +12 -0
  539. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multi-line-bold.md +25 -0
  540. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multi-line-footnote-japanese.md +17 -0
  541. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multi-line-footnote.md +9 -0
  542. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multi-ref-same-footnote.md +12 -0
  543. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multiple-authors.md +9 -0
  544. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multiple-example-blocks-inside-quote-block.md +19 -0
  545. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multiple-keywords-in-front-matter.md +6 -0
  546. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/ndash-and-mdash.md +25 -0
  547. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/nested-bold-italics.md +10 -0
  548. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/nested-lists.md +57 -0
  549. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/no-spaces-in-categories.md +5 -0
  550. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/no-spaces-in-tags.md +5 -0
  551. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/no-toc-in-summary--with-more.md +41 -0
  552. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/no-toc-in-summary--without-more.md +39 -0
  553. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/one-verse.md +18 -0
  554. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/options-num-0.md +46 -0
  555. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/options-num-2.md +46 -0
  556. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/options-num-all.md +46 -0
  557. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/options-num-nil.md +46 -0
  558. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/options-num-onlytoc.md +46 -0
  559. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/org-babel-results.md +98 -0
  560. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/org-source-block-pygments.md +37 -0
  561. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/org-todo-kwd-with-double-underscores.md +14 -0
  562. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/output-empty.md +9 -0
  563. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/output-html-and-json.md +11 -0
  564. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/overriding-tags.md +13 -0
  565. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/page-using-headless-page-bundle.md +11 -0
  566. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/paired-shortcodes-special-blocks-named-arguments.md +30 -0
  567. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/paired-shortcodes-special-blocks-no-arguments.md +55 -0
  568. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/paired-shortcodes-special-blocks-positional-arguments.md +107 -0
  569. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/paragraphs-in-lists.md +21 -0
  570. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/paragraphs-with-attr-html.md +29 -0
  571. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/parsing-date-for-a-post-which-begins-with-a-subheading.md +10 -0
  572. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/parsing-date-from-closed-property.md +15 -0
  573. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/plural-author-front-matter.md +9 -0
  574. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-1-with-auto-calc-of-weight--hugo-weight-as-keyword.md +6 -0
  575. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-1.md +7 -0
  576. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-2-with-auto-calc-of-weight--hugo-weight-as-keyword.md +6 -0
  577. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-2.md +8 -0
  578. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-3-with-auto-calc-of-weight--hugo-weight-as-keyword.md +6 -0
  579. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-4-with-auto-calc-of-weight--hugo-weight-as-keyword.md +6 -0
  580. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-5-with-auto-calc-of-weight--hugo-weight-as-keyword.md +6 -0
  581. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-description-quotes.md +9 -0
  582. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-heading-slugs.md +82 -0
  583. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-title-quotes.md +8 -0
  584. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-done.md +14 -0
  585. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-0-num-t.md +46 -0
  586. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-1-num-onlytoc.md +64 -0
  587. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-2-num-nil.md +65 -0
  588. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-2-num-t.md +70 -0
  589. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-nil-num-nil.md +46 -0
  590. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-t-num-nil.md +69 -0
  591. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-t-num-onlytoc.md +74 -0
  592. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-t-num-t.md +74 -0
  593. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-menu-1.md +9 -0
  594. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-menu-2.md +9 -0
  595. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-menu-3.md +9 -0
  596. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-menu-4.md +9 -0
  597. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-menu-5.md +9 -0
  598. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-toc-keyword-0.md +46 -0
  599. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-toc-keyword-2.md +65 -0
  600. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-toc-keyword-6.md +69 -0
  601. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-todo.md +14 -0
  602. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/prep.md +14 -0
  603. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/publish-date-hugo-compatible-date.md +9 -0
  604. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/publish-date-org-time-stamp.md +9 -0
  605. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/publish-date-scheduled.md +12 -0
  606. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/quote-blocks-in-numbered-lists.md +31 -0
  607. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/quote-blocks-with-attr-html.md +17 -0
  608. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/radio-targets.md +220 -0
  609. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/remove-a-front-matter-key.md +10 -0
  610. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-both-tags-and-categories-keys.md +9 -0
  611. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-custom-keys.md +10 -0
  612. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-description-with-summary.md +12 -0
  613. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-keys-using-multiple-properties.md +9 -0
  614. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-non-existing-keys.md +8 -0
  615. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-only-categories-key.md +9 -0
  616. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-only-linktitle-key.md +9 -0
  617. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-only-tags-key.md +8 -0
  618. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/resources-custom-params-list-values-toml.md +14 -0
  619. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/resources-custom-params-list-values-yaml.md +14 -0
  620. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/resources-in-front-matter-toml.md +17 -0
  621. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/resources-in-front-matter-yaml.md +15 -0
  622. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/resources-only-custom-params.md +9 -0
  623. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/series-multiple.md +9 -0
  624. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/series-single.md +9 -0
  625. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/setting-heading-anchors.md +24 -0
  626. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/shortcode-src-blocks.md +50 -0
  627. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/simple-table.md +11 -0
  628. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/single-author-custom.md +8 -0
  629. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/single-author.md +8 -0
  630. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/single-double-quotes.md +21 -0
  631. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/single-keyword-in-front-matter.md +6 -0
  632. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/slug-front-matter.md +11 -0
  633. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-caption.md +23 -0
  634. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-followed-by-a-quote-block-containing-another-source-block.md +19 -0
  635. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-indented.md +113 -0
  636. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-inside-quote-block-and-another-source-block.md +82 -0
  637. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-md-with-hugo-shortcodes.md +56 -0
  638. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-with-highlighting.md +134 -0
  639. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-with-line-numbers.md +95 -0
  640. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-blocks-with-attr-html.md +21 -0
  641. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/spaces-in-categories.md +10 -0
  642. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/spaces-in-tags.md +10 -0
  643. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/special-block-empty.md +8 -0
  644. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/special-block-whitespace.md +16 -0
  645. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/special-blocks.md +97 -0
  646. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/src-and-example-blocks-in-lists.md +49 -0
  647. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/src-block-following-a-list.md +36 -0
  648. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/src-block-outside-list-with-list-syntax.md +10 -0
  649. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/sub-superscripts-dont-require-braces.md +14 -0
  650. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/sub-superscripts-require-braces.md +20 -0
  651. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/sub1/hugo-section-frag-post-in-posts-sub1.md +6 -0
  652. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/sub1/sub2/hugo-section-frag-post-in-posts-sub1-sub2.md +6 -0
  653. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/sub1/sub2/sub3/hugo-section-frag-post-in-posts-sub1-sub2-sub3.md +6 -0
  654. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/summary-splitter.md +12 -0
  655. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/suppress-lastmod-in-subtree-with-auto-lastmod.md +15 -0
  656. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/suppress-lastmod-non-zero-but-date-unset.md +14 -0
  657. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/swap-tags-and-categories.md +9 -0
  658. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-bottom-border.md +11 -0
  659. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-caption.md +39 -0
  660. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-column-alignment.md +38 -0
  661. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-name.md +22 -0
  662. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-only-rule-after-first-row.md +11 -0
  663. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-styling.md +526 -0
  664. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-top-and-bottom-border.md +11 -0
  665. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-top-border.md +11 -0
  666. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-with-borders-and-rule-after-first.md +11 -0
  667. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-with-narrowest-columns.md +11 -0
  668. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-with-single-cell.md +9 -0
  669. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-with-single-column.md +10 -0
  670. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-with-single-row.md +9 -0
  671. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-1.md +12 -0
  672. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-2.md +11 -0
  673. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-3.md +13 -0
  674. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-4.md +11 -0
  675. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-auto-1.md +13 -0
  676. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-auto-2.md +11 -0
  677. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-categories-weight-222.md +6 -0
  678. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-categories-weight-auto-1.md +6 -0
  679. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-categories-weight-auto-2.md +6 -0
  680. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-tags-weight-111.md +6 -0
  681. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-tags-weight-auto-1.md +6 -0
  682. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-tags-weight-auto-2.md +6 -0
  683. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/test-tags.md +8 -0
  684. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title-with-just-date-chars.md +11 -0
  685. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title_with_asterisks.md +8 -0
  686. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title_with_asterisks_underscores_backticks.md +8 -0
  687. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title_with_backticks_equals_tildes.md +9 -0
  688. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title_with_forward_slashes.md +9 -0
  689. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title_with_under_scores.md +9 -0
  690. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/toc-local.md +123 -0
  691. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/toc-target.md +56 -0
  692. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/toc-with-todo-disabled.md +45 -0
  693. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/toc-with-todo-enabled.md +45 -0
  694. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/type-and-layout-front-matter.md +9 -0
  695. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/type-front-matter.md +13 -0
  696. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/under-scores-in-title.md +9 -0
  697. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/unsuppress-lastmod-in-subtree.md +17 -0
  698. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/url-encoding-in-links.md +11 -0
  699. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/url-front-matter.md +13 -0
  700. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/using-org-macros-in-lieu-of-hugo-shortcodes.md +16 -0
  701. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/verse-for-indentation.md +71 -0
  702. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/videos-multiple.md +9 -0
  703. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/videos-single.md +9 -0
  704. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/wrapping-org-headings-in-html-tags.md +63 -0
  705. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/real-examples/multifractals-in-ecology-using-r.md +151 -0
  706. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/real-examples/nn-intro.md +779 -0
  707. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/root-level-content-empty-section.md +10 -0
  708. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/root-level-content-section-set-to-slash.md +12 -0
  709. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/search.md +15 -0
  710. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/section-a/post-a1.md +7 -0
  711. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/section-a/post-ax.md +8 -0
  712. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/links-to-org-elements.md +345 -0
  713. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/page-bundle-file-based-flow/index.md +8 -0
  714. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/post-draft.md +25 -0
  715. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/post-toml.md +68 -0
  716. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/post-with-slug.md +9 -0
  717. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/post-yaml.md +45 -0
  718. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/post_with_underscore_in_name.md +11 -0
  719. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/writing-hugo-blog-in-org-file-export.md +45 -0
  720. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/writing-hugo-blog-in-org-subtree-export.md +44 -0
  721. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/zoo/post-in-zoo-section.md +8 -0
  722. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/all-posts.org +7828 -0
  723. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/auto-set-lastmod.org +13 -0
  724. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/cite/bib/bib1.bib +22 -0
  725. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/cite/bib/bib2.bib +29 -0
  726. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/cite/bib/bib3.bib +57 -0
  727. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/cite/csl/apa.csl +777 -0
  728. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/construct-hugo-front-matter-from-menu-meta-data.org +18 -0
  729. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/deep-nesting.org +94 -0
  730. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/dir-locals/dir-locals-test.org +36 -0
  731. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/exclude_tags_test.org +17 -0
  732. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/hugo-menu-as-keyword.org +26 -0
  733. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/hugo-weight-as-keyword-auto-calc.org +27 -0
  734. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images/citations-with-captions/nested-boxes.svg +20 -0
  735. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images/header-image-using-resources/stay_hungry_stay_foolish__quotefancy_dot_com.jpg +0 -0
  736. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images/issues/360-bundle/org.png +0 -0
  737. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images/svg-with-hyperlinks.svg +19 -0
  738. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/gnu.png +0 -0
  739. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/images/_home/org-copy-3.png +0 -0
  740. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/images/org-copy-1.png +0 -0
  741. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/images/page-bundle-images-in-same-dir/org-copy-2.png +0 -0
  742. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/images-in-content.org +78 -0
  743. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/org.png +0 -0
  744. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/post3/gnu-copy.png +0 -0
  745. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/post3/post3.org +29 -0
  746. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/post4/org-copy.png +0 -0
  747. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/post4/post4.org +29 -0
  748. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/issues.org +63 -0
  749. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/keyword-collection.org +118 -0
  750. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/mandatory-EXPORT_FILE_NAME-for-subtree-export.org +9 -0
  751. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/misc/common.org +60 -0
  752. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/screenshot-subtree-export-example.org +40 -0
  753. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/allow-empty-titles-1.org +8 -0
  754. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/disable-title-1.org +10 -0
  755. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/empty_tag.org +15 -0
  756. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/export-without-emphasize.org +16 -0
  757. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/hugo-auto-weight-ineffective-for-per-file-exports.org +12 -0
  758. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/links-to-org-elements.org +184 -0
  759. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/page-bundle-file-based-flow.org +15 -0
  760. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/post-draft.org +20 -0
  761. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/post-toml.org +44 -0
  762. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/post-with-slug.org +10 -0
  763. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/post-yaml.org +42 -0
  764. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/post_with_underscore_in_name.org +12 -0
  765. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/src-blocks-with-highlight-shortcode.org +50 -0
  766. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/suppress-lastmod-period-non-zero.org +82 -0
  767. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/suppress-lastmod-period-zero.org +31 -0
  768. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/tags-and-categories.org +49 -0
  769. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/template.org +17 -0
  770. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/writing-hugo-blog-in-org-file-export.org +42 -0
  771. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/files-to-be-copied-to-static/foo/copy-2-of-unicorn-logo.png +0 -0
  772. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/files-to-be-copied-to-static/foo/unicorn logo.png +0 -0
  773. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/files-to-be-copied-to-static/static/images/copy-of-unicorn-logo-page-bundle.png +0 -0
  774. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/files-to-be-copied-to-static/static/images/copy-of-unicorn-logo.png +0 -0
  775. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/files-to-be-copied-to-static/static/images/unicorn-logo-small.png +0 -0
  776. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/_default/alternate-single.html +15 -0
  777. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/_default/headless-bundle-single.html +79 -0
  778. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/_default/single.json +7 -0
  779. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/section/book1.html +12 -0
  780. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/alert.html +3 -0
  781. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/mdshortcode-named.html +10 -0
  782. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/mdshortcode.html +1 -0
  783. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/myshortcode-named.html +10 -0
  784. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/myshortcode-pos.html +7 -0
  785. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/myshortcode.html +1 -0
  786. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/type-test/alternate-single.html +15 -0
  787. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/type-test/single.html +15 -0
  788. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/css/style.css +21 -0
  789. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/MultifractalsInR/C3_BoxCounting.png +0 -0
  790. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/MultifractalsInR/C3_Cladoceran.png +0 -0
  791. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/MultifractalsInR/C3_Clouds.png +0 -0
  792. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/MultifractalsInR/fractal-ice.jpg +0 -0
  793. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/cross-entropy.png +0 -0
  794. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/mse.png +0 -0
  795. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/neuron.png +0 -0
  796. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/nn-weight.png +0 -0
  797. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/overfit-10.png +0 -0
  798. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/overfit-3.png +0 -0
  799. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/copy-of-unicorn-logo-page-bundle.png +0 -0
  800. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/copy-of-unicorn-logo.png +0 -0
  801. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/org-mode-unicorn-logo.png +0 -0
  802. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/unicorn-logo-small.png +0 -0
  803. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/copy-2-of-unicorn-logo.png +0 -0
  804. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/gnu-copy.png +0 -0
  805. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/gnu.png +0 -0
  806. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/org-copy.png +0 -0
  807. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/org.png +0 -0
  808. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/unicorn logo.png +0 -0
  809. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/videos/sample.mp4 +0 -0
  810. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/.git +1 -0
  811. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/.gitignore +1 -0
  812. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/.gitmodules +6 -0
  813. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/LICENSE.md +21 -0
  814. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/README.md +90 -0
  815. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/archetypes/.gitkeep +2 -0
  816. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/config.toml +1 -0
  817. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/LICENSE +21 -0
  818. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/README.md +25 -0
  819. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/config.toml +34 -0
  820. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/content/about.md +22 -0
  821. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/content/post/creating-a-new-theme.md +1488 -0
  822. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/content/post/goisforlovers.md +400 -0
  823. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/content/post/hugoisforlovers.md +99 -0
  824. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/content/post/migrate-from-jekyll.md +219 -0
  825. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/content/search.md +14 -0
  826. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/exampleSite.org +2004 -0
  827. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/layouts/.gitkeep +0 -0
  828. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/static/.gitignore +0 -0
  829. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/.ignore +1 -0
  830. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-debugprint/.git +1 -0
  831. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-debugprint/LICENSE +674 -0
  832. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-debugprint/README.org +10 -0
  833. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-debugprint/layouts/partials/debugprint.css +51 -0
  834. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-debugprint/layouts/partials/debugprint.html +219 -0
  835. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-debugprint/layouts/shortcodes/debug.html +20 -0
  836. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-debugprint/theme.toml +15 -0
  837. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/.git +1 -0
  838. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/LICENSE +674 -0
  839. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/README.org +10 -0
  840. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/layouts/_default/search.html +38 -0
  841. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/layouts/_default/search.json +5 -0
  842. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/static/js/libs/.ignore +1 -0
  843. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/static/js/libs/fuse.js/3.2.1/fuse.min.js +9 -0
  844. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/static/js/libs/jquery/3.3.1/jquery.min.js +2 -0
  845. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/static/js/libs/jquery/3.3.1/jquery.slim.min.js +2 -0
  846. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/static/js/libs/mark.js/8.11.1/jquery.mark.min.js +7 -0
  847. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/static/js/search.js +100 -0
  848. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/theme.toml +15 -0
  849. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/images/screenshot.png +0 -0
  850. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/images/tn.png +0 -0
  851. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/404.html +19 -0
  852. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/baseof.html +214 -0
  853. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/li.html +12 -0
  854. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/list.html +74 -0
  855. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/single.html +94 -0
  856. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/summary.html +23 -0
  857. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/terms.html +50 -0
  858. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/index.html +113 -0
  859. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/archive/version_ge.html +74 -0
  860. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/header_image.html +34 -0
  861. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/mathjax.html +11 -0
  862. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/opengraph.html +93 -0
  863. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/summary_minus_toc.html +20 -0
  864. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/twitter_cards.html +41 -0
  865. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/shortcodes/figure2.html +18 -0
  866. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/netlify.toml +19 -0
  867. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/static/css/github_chroma.css +71 -0
  868. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/static/js/mathjax-config.js +5 -0
  869. promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/theme.toml +15 -0
  870. promnesia-1.4.20250909/tests/testdata/test_config.py +35 -0
  871. promnesia-1.4.20250909/tests/testdata/test_multiple_page_updates/index.html +32 -0
  872. promnesia-1.4.20250909/tests/webdriver_utils.py +162 -0
  873. promnesia-1.4.20250909/tox.ini +150 -0
  874. promnesia-1.2.20240810/.ci/end2end/Dockerfile +0 -19
  875. promnesia-1.2.20240810/.ci/end2end/scripts/build_and_run_tests.sh +0 -15
  876. promnesia-1.2.20240810/.ci/github-ci-compat +0 -27
  877. promnesia-1.2.20240810/.ci/run +0 -48
  878. promnesia-1.2.20240810/.github/workflows/main.yml +0 -180
  879. promnesia-1.2.20240810/CHANGELOG.org +0 -38
  880. promnesia-1.2.20240810/PKG-INFO +0 -53
  881. promnesia-1.2.20240810/README.org +0 -418
  882. promnesia-1.2.20240810/doc/SOURCES.org +0 -243
  883. promnesia-1.2.20240810/doc/config.py +0 -173
  884. promnesia-1.2.20240810/docker/docker_files/Dockerfile +0 -21
  885. promnesia-1.2.20240810/docker/docker_files/Dockerfile-indexer +0 -6
  886. promnesia-1.2.20240810/docker/docker_files/docker-compose.yaml +0 -27
  887. promnesia-1.2.20240810/docker/start.sh +0 -6
  888. promnesia-1.2.20240810/mypy.ini +0 -15
  889. promnesia-1.2.20240810/pytest.ini +0 -14
  890. promnesia-1.2.20240810/ruff.toml +0 -25
  891. promnesia-1.2.20240810/scripts/browser_history.py +0 -130
  892. promnesia-1.2.20240810/setup.cfg +0 -4
  893. promnesia-1.2.20240810/setup.py +0 -117
  894. promnesia-1.2.20240810/src/promnesia/__init__.py +0 -6
  895. promnesia-1.2.20240810/src/promnesia/__main__.py +0 -434
  896. promnesia-1.2.20240810/src/promnesia/cannon.py +0 -865
  897. promnesia-1.2.20240810/src/promnesia/common.py +0 -607
  898. promnesia-1.2.20240810/src/promnesia/compare.py +0 -158
  899. promnesia-1.2.20240810/src/promnesia/compat.py +0 -12
  900. promnesia-1.2.20240810/src/promnesia/config.py +0 -164
  901. promnesia-1.2.20240810/src/promnesia/database/common.py +0 -66
  902. promnesia-1.2.20240810/src/promnesia/database/dump.py +0 -187
  903. promnesia-1.2.20240810/src/promnesia/database/load.py +0 -50
  904. promnesia-1.2.20240810/src/promnesia/extract.py +0 -104
  905. promnesia-1.2.20240810/src/promnesia/kjson.py +0 -121
  906. promnesia-1.2.20240810/src/promnesia/logging.py +0 -156
  907. promnesia-1.2.20240810/src/promnesia/misc/install_server.py +0 -154
  908. promnesia-1.2.20240810/src/promnesia/server.py +0 -470
  909. promnesia-1.2.20240810/src/promnesia/sources/auto.py +0 -365
  910. promnesia-1.2.20240810/src/promnesia/sources/auto_logseq.py +0 -14
  911. promnesia-1.2.20240810/src/promnesia/sources/auto_obsidian.py +0 -8
  912. promnesia-1.2.20240810/src/promnesia/sources/browser.py +0 -89
  913. promnesia-1.2.20240810/src/promnesia/sources/browser_legacy.py +0 -298
  914. promnesia-1.2.20240810/src/promnesia/sources/demo.py +0 -36
  915. promnesia-1.2.20240810/src/promnesia/sources/fbmessenger.py +0 -35
  916. promnesia-1.2.20240810/src/promnesia/sources/filetypes.py +0 -150
  917. promnesia-1.2.20240810/src/promnesia/sources/github.py +0 -89
  918. promnesia-1.2.20240810/src/promnesia/sources/guess.py +0 -34
  919. promnesia-1.2.20240810/src/promnesia/sources/hackernews.py +0 -40
  920. promnesia-1.2.20240810/src/promnesia/sources/hpi.py +0 -11
  921. promnesia-1.2.20240810/src/promnesia/sources/html.py +0 -43
  922. promnesia-1.2.20240810/src/promnesia/sources/hypothesis.py +0 -48
  923. promnesia-1.2.20240810/src/promnesia/sources/instapaper.py +0 -32
  924. promnesia-1.2.20240810/src/promnesia/sources/markdown.py +0 -135
  925. promnesia-1.2.20240810/src/promnesia/sources/org.py +0 -176
  926. promnesia-1.2.20240810/src/promnesia/sources/plaintext.py +0 -116
  927. promnesia-1.2.20240810/src/promnesia/sources/pocket.py +0 -34
  928. promnesia-1.2.20240810/src/promnesia/sources/reddit.py +0 -172
  929. promnesia-1.2.20240810/src/promnesia/sources/roamresearch.py +0 -48
  930. promnesia-1.2.20240810/src/promnesia/sources/rss.py +0 -28
  931. promnesia-1.2.20240810/src/promnesia/sources/shellcmd.py +0 -85
  932. promnesia-1.2.20240810/src/promnesia/sources/signal.py +0 -442
  933. promnesia-1.2.20240810/src/promnesia/sources/smscalls.py +0 -33
  934. promnesia-1.2.20240810/src/promnesia/sources/stackexchange.py +0 -21
  935. promnesia-1.2.20240810/src/promnesia/sources/takeout.py +0 -207
  936. promnesia-1.2.20240810/src/promnesia/sources/takeout_legacy.py +0 -124
  937. promnesia-1.2.20240810/src/promnesia/sources/telegram.py +0 -84
  938. promnesia-1.2.20240810/src/promnesia/sources/telegram_legacy.py +0 -117
  939. promnesia-1.2.20240810/src/promnesia/sources/twitter.py +0 -59
  940. promnesia-1.2.20240810/src/promnesia/sources/vcs.py +0 -41
  941. promnesia-1.2.20240810/src/promnesia/sources/viber.py +0 -179
  942. promnesia-1.2.20240810/src/promnesia/sources/website.py +0 -57
  943. promnesia-1.2.20240810/src/promnesia/sources/zulip.py +0 -25
  944. promnesia-1.2.20240810/src/promnesia/sqlite.py +0 -42
  945. promnesia-1.2.20240810/src/promnesia/tests/common.py +0 -137
  946. promnesia-1.2.20240810/src/promnesia/tests/server_helper.py +0 -64
  947. promnesia-1.2.20240810/src/promnesia/tests/sources/test_auto.py +0 -66
  948. promnesia-1.2.20240810/src/promnesia/tests/sources/test_filetypes.py +0 -42
  949. promnesia-1.2.20240810/src/promnesia/tests/sources/test_hypothesis.py +0 -39
  950. promnesia-1.2.20240810/src/promnesia/tests/sources/test_org.py +0 -65
  951. promnesia-1.2.20240810/src/promnesia/tests/sources/test_plaintext.py +0 -26
  952. promnesia-1.2.20240810/src/promnesia/tests/sources/test_shellcmd.py +0 -22
  953. promnesia-1.2.20240810/src/promnesia/tests/sources/test_takeout.py +0 -58
  954. promnesia-1.2.20240810/src/promnesia/tests/test_cannon.py +0 -325
  955. promnesia-1.2.20240810/src/promnesia/tests/test_cli.py +0 -42
  956. promnesia-1.2.20240810/src/promnesia/tests/test_compare.py +0 -30
  957. promnesia-1.2.20240810/src/promnesia/tests/test_config.py +0 -290
  958. promnesia-1.2.20240810/src/promnesia/tests/test_db_dump.py +0 -223
  959. promnesia-1.2.20240810/src/promnesia/tests/test_extract.py +0 -61
  960. promnesia-1.2.20240810/src/promnesia/tests/test_indexer.py +0 -245
  961. promnesia-1.2.20240810/src/promnesia/tests/test_server.py +0 -292
  962. promnesia-1.2.20240810/src/promnesia/tests/test_traverse.py +0 -41
  963. promnesia-1.2.20240810/src/promnesia/tests/utils.py +0 -35
  964. promnesia-1.2.20240810/src/promnesia.egg-info/PKG-INFO +0 -53
  965. promnesia-1.2.20240810/src/promnesia.egg-info/SOURCES.txt +0 -215
  966. promnesia-1.2.20240810/src/promnesia.egg-info/dependency_links.txt +0 -1
  967. promnesia-1.2.20240810/src/promnesia.egg-info/entry_points.txt +0 -2
  968. promnesia-1.2.20240810/src/promnesia.egg-info/not-zip-safe +0 -1
  969. promnesia-1.2.20240810/src/promnesia.egg-info/requires.txt +0 -53
  970. promnesia-1.2.20240810/src/promnesia.egg-info/top_level.txt +0 -1
  971. promnesia-1.2.20240810/tests/addon.py +0 -364
  972. promnesia-1.2.20240810/tests/addon_helper.py +0 -172
  973. promnesia-1.2.20240810/tests/common.py +0 -69
  974. promnesia-1.2.20240810/tests/convert_screencast.py +0 -51
  975. promnesia-1.2.20240810/tests/demos.py +0 -726
  976. promnesia-1.2.20240810/tests/end2end_test.py +0 -837
  977. promnesia-1.2.20240810/tests/record.py +0 -135
  978. promnesia-1.2.20240810/tests/testdata/test_config.py +0 -35
  979. promnesia-1.2.20240810/tests/webdriver_utils.py +0 -162
  980. promnesia-1.2.20240810/tox.ini +0 -99
  981. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/end2end/.dockerignore +0 -0
  982. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/end2end/build_and_run.sh +0 -0
  983. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/end2end/scripts/setup_chrome.sh +0 -0
  984. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/end2end/scripts/setup_firefox.sh +0 -0
  985. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/end2end/scripts/setup_node.sh +0 -0
  986. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/fake-systemd/systemctl +0 -0
  987. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/release +0 -0
  988. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.dockerignore +0 -0
  989. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.gitignore +0 -0
  990. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.gitmodules +0 -0
  991. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/LICENSE +0 -0
  992. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/benchmarks/20231115.org +0 -0
  993. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/ci/run-github-locally +0 -0
  994. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/doc/DEVELOPMENT.org +0 -0
  995. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/doc/GUIDE.org +0 -0
  996. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/doc/PRIVACY.org +0 -0
  997. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/doc/TROUBLESHOOTING.org +0 -0
  998. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/doc/addons-mozilla-org.org +0 -0
  999. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/docker/.gitignore +0 -0
  1000. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/docker/docker_files/indexer-config.py.example +0 -0
  1001. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/docker/docker_files/indexer-entrypoint.sh +0 -0
  1002. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/docker/get-some-data.sh +0 -0
  1003. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/docker/init.sh +0 -0
  1004. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/.ci/build +0 -0
  1005. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/.editorconfig +0 -0
  1006. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/MANUAL-TESTS.org +0 -0
  1007. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/TODO.org +0 -0
  1008. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/__mocks__/browser.js +0 -0
  1009. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/__mocks__/dom-form-serializer.js +0 -0
  1010. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/amo-metadata.json +0 -0
  1011. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/babel.config.cjs +0 -0
  1012. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/build +0 -0
  1013. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/eslint.config.js +0 -0
  1014. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/generate_manifest.js +0 -0
  1015. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/jest.config.cjs +0 -0
  1016. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/old/flow-typed/webextension-polyfill.js +0 -0
  1017. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/old/patcher.js +0 -0
  1018. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/old/webpack.config.js +0 -0
  1019. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/package-lock.json +0 -0
  1020. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/package.json +0 -0
  1021. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/rollup.config.js +0 -0
  1022. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/api.ts +0 -0
  1023. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/background.ts +0 -0
  1024. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/background_chrome_mv2.js +0 -0
  1025. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/common.ts +0 -0
  1026. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/compat.ts +0 -0
  1027. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/display.ts +0 -0
  1028. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/filterlist.ts +0 -0
  1029. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/generate +0 -0
  1030. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_blacklisted_48.png +0 -0
  1031. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_blue_48.png +0 -0
  1032. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_boring_48.png +0 -0
  1033. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_error.png +0 -0
  1034. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_not_visited_48.png +0 -0
  1035. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_relatives_48.png +0 -0
  1036. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_visited_48.png +0 -0
  1037. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/source_48.svg +0 -0
  1038. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/normalise.ts +0 -0
  1039. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/notifications.ts +0 -0
  1040. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/options.ts +0 -0
  1041. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/options_page.css +0 -0
  1042. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/options_page.html +0 -0
  1043. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/options_page.ts +0 -0
  1044. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/search.html +0 -0
  1045. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/search.ts +0 -0
  1046. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/selenium_bridge.js +0 -0
  1047. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/showvisited.css +0 -0
  1048. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/showvisited.js +0 -0
  1049. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/sidebar-outer.css +0 -0
  1050. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/sidebar.css +0 -0
  1051. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/sidebar.ts +0 -0
  1052. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/sources.ts +0 -0
  1053. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/toastify.css +0 -0
  1054. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/toastify.js +0 -0
  1055. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tests/anchorme.test.js +0 -0
  1056. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tests/common.test.js +0 -0
  1057. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tests/defensify.test.js +0 -0
  1058. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tests/integration.test.js +0 -0
  1059. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tests/test.html +0 -0
  1060. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tsconfig.json +0 -0
  1061. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/scripts/backup-phone-history.sh +0 -0
  1062. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/scripts/promnesia +0 -0
  1063. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/misc/__init__.pyi +0 -0
  1064. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/misc/config_example.py +0 -0
  1065. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/py.typed +0 -0
  1066. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/tests/__init__.py +0 -0
  1067. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/tests/sources/__init__.py +0 -0
  1068. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/tests/test_extract_urls.py +0 -0
  1069. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/install_and_run +0 -0
  1070. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/orgs/file.org +0 -0
  1071. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/orgs/file2.org +0 -0
  1072. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/orgs/file3.org +0 -0
  1073. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/orgs/file4.org +0 -0
  1074. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/orgs/file5.org +0 -0
  1075. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/pocket.json +0 -0
  1076. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/custom/file1.txt +0 -0
  1077. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/custom/file2.txt +0 -0
  1078. /promnesia-1.2.20240810/src/promnesia/sources/__init__.pyi → /promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/py.typed +0 -0
  1079. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/logseq-graph/logseq/config.edn +0 -0
  1080. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/logseq-graph/pages/Note.md +0 -0
  1081. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/normalise/ff.txt +0 -0
  1082. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/obsidian-vault/.obsidian/app.json +0 -0
  1083. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/obsidian-vault/Note.md +0 -0
  1084. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/takeout/Takeout/My Activity/Chrome/MyActivity.html +0 -0
  1085. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/takeout-20150518T000000Z.zip +0 -0
  1086. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/traverse/ignoreme.txt +0 -0
  1087. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/traverse/ignoreme2/notrealignored.txt +0 -0
  1088. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/traverse/imhere.txt +0 -0
  1089. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/traverse/imhere2/real.txt +0 -0
  1090. {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/weird.txt +0 -0
@@ -0,0 +1,19 @@
1
+ FROM ubuntu:latest
2
+
3
+ ENV DEBIAN_FRONTEND=noninteractive
4
+
5
+ COPY scripts /scripts
6
+
7
+ RUN /scripts/setup_firefox.sh \
8
+ && /scripts/setup_chrome.sh \
9
+ && /scripts/setup_node.sh \
10
+ && apt install --yes pipx git \
11
+ # using python docs as a source of some html test data
12
+ # need to prevent dpkg from excluding doc files...
13
+ && sed -i '/usr.share.doc/d' /etc/dpkg/dpkg.cfg.d/excludes && apt install --yes python3-doc \
14
+ && apt clean \
15
+ && mkdir /promnesia
16
+
17
+ WORKDIR /promnesia
18
+
19
+ ENTRYPOINT ["/scripts/build_and_run_tests.sh"]
@@ -0,0 +1,19 @@
1
+ #!/bin/bash
2
+ set -eux
3
+
4
+ # Seems wrong to keep the whole repository in docker build context.
5
+ # So instead, we mount the repository inside the container (into /promnesia_source)
6
+ # (as read only to avoid messing up host files and crapping with caches etc.)
7
+ # However to actually run tests we do need a writable directory..
8
+ # So we copy the repo to the actual working dir here
9
+
10
+ # ugh, kinda annoying -- not sure how to update source files when we change them on the host system...
11
+ cp -R -T /promnesia_source /promnesia
12
+ extension/.ci/build
13
+
14
+ git init # todo ??? otherwise setuptools-scm fails to detect the version...
15
+
16
+ # eh. kinda annoying to jump over so many venv layer here...
17
+ # but docker runs as root and it doesn't like pip install uv now
18
+ # even if you pass --break-system-packages, then subsequent uv invocation also fails
19
+ pipx run uv tool run --with=tox-uv tox -e end2end -- "$@"
@@ -0,0 +1,20 @@
1
+ #!/bin/bash -eux
2
+
3
+ # install sudo if it's missing
4
+ # probably means that we're running under local docker..
5
+ if ! which sudo; then
6
+ apt update
7
+ apt -y install sudo
8
+ fi
9
+
10
+ sudo apt update # github actions might fail if we don't update it?
11
+
12
+ # make up for differences between ubuntu:focal and github action image...
13
+ sudo apt -y install python3.12 python3.12-dev
14
+ sudo apt -y install python3-pip python3-setuptools
15
+
16
+ # otherwise setuptools don't work..
17
+ sudo apt -y install git
18
+
19
+ # jq wants it??
20
+ sudo apt -y install dh-autoreconf
@@ -0,0 +1,56 @@
1
+ #!/usr/bin/env python3
2
+ '''
3
+ Deploys Python package onto [[https://pypi.org][PyPi]] or [[https://test.pypi.org][test PyPi]].
4
+
5
+ - running manually
6
+
7
+ You'll need =UV_PUBLISH_TOKEN= env variable
8
+
9
+ - running on Github Actions
10
+
11
+ Instead of env variable, relies on configuring github as Trusted publisher (https://docs.pypi.org/trusted-publishers/) -- both for test and regular pypi
12
+
13
+ It's running as =pypi= job in [[file:.github/workflows/main.yml][Github Actions config]].
14
+ Packages are deployed on:
15
+ - every master commit, onto test pypi
16
+ - every new tag, onto production pypi
17
+ '''
18
+
19
+ UV_PUBLISH_TOKEN = 'UV_PUBLISH_TOKEN'
20
+
21
+ import argparse
22
+ import os
23
+ import shutil
24
+ from pathlib import Path
25
+ from subprocess import check_call
26
+
27
+ is_ci = os.environ.get('CI') is not None
28
+
29
+
30
+ def main() -> None:
31
+ p = argparse.ArgumentParser()
32
+ p.add_argument('--use-test-pypi', action='store_true')
33
+ args = p.parse_args()
34
+
35
+ publish_url = ['--publish-url', 'https://test.pypi.org/legacy/'] if args.use_test_pypi else []
36
+
37
+ root = Path(__file__).absolute().parent.parent
38
+ os.chdir(root) # just in case
39
+
40
+ # TODO ok, for now uv won't remove dist dir if it already exists
41
+ # https://github.com/astral-sh/uv/issues/10293
42
+ dist = root / 'dist'
43
+ if dist.exists():
44
+ shutil.rmtree(dist)
45
+
46
+ check_call(['uv', 'build'])
47
+
48
+ if not is_ci:
49
+ # CI relies on trusted publishers so doesn't need env variable
50
+ assert UV_PUBLISH_TOKEN in os.environ, f'no {UV_PUBLISH_TOKEN} passed'
51
+
52
+ check_call(['uv', 'publish', *publish_url])
53
+
54
+
55
+ if __name__ == '__main__':
56
+ main()
@@ -0,0 +1,44 @@
1
+ #!/bin/bash
2
+ set -eu
3
+
4
+ cd "$(dirname "$0")"
5
+ cd .. # git root
6
+
7
+ if ! command -v sudo; then
8
+ # CI or Docker sometimes doesn't have it, so useful to have a dummy
9
+ function sudo {
10
+ "$@"
11
+ }
12
+ fi
13
+
14
+ # --parallel-live to show outputs while it's running
15
+ tox_cmd='run-parallel --parallel-live'
16
+ if [ -n "${CI-}" ]; then
17
+ # install OS specific stuff here
18
+ # TODO: pyjq is not necessary anymore? will keep CI deps just in case I guess
19
+ PYJQ_DEPS=('autoconf' 'automake' 'libtool') # see https://github.com/mwilliamson/jq.py#installation
20
+ case "$OSTYPE" in
21
+ darwin*)
22
+ # macos
23
+ brew install "${PYJQ_DEPS[@]}"
24
+
25
+ # TODO hmm. this should be in setup.py?
26
+ brew install libmagic # for python-magic
27
+ ;;
28
+ cygwin* | msys* | win*)
29
+ # windows
30
+ # ugh. parallel stuff seems super flaky under windows, some random failures, "file used by other process" and crap like that
31
+ tox_cmd='run'
32
+ ;;
33
+ *)
34
+ # must be linux?
35
+ sudo apt update
36
+
37
+ # TODO also need to warn from readme??
38
+ sudo apt install "${PYJQ_DEPS[@]}" python3-dev
39
+ ;;
40
+ esac
41
+ fi
42
+
43
+ # NOTE: expects uv installed
44
+ uv tool run --with tox-uv tox $tox_cmd "$@"
@@ -0,0 +1,201 @@
1
+ # see https://github.com/karlicoss/pymplate for up-to-date reference
2
+
3
+ name: CI
4
+ on:
5
+ push:
6
+ branches: '*'
7
+ tags: 'v[0-9]+.*' # only trigger on 'release' tags for PyPi
8
+ # Ideally I would put this in the pypi job... but github syntax doesn't allow for regexes there :shrug:
9
+
10
+ # Needed to trigger on others' PRs.
11
+ # Note that people who fork it need to go to "Actions" tab on their fork and click "I understand my workflows, go ahead and enable them".
12
+ pull_request:
13
+
14
+ # Needed to trigger workflows manually.
15
+ workflow_dispatch:
16
+ inputs:
17
+ debug_enabled:
18
+ type: boolean
19
+ description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
20
+ required: false
21
+ default: false
22
+
23
+ schedule:
24
+ - cron: '31 18 * * 5' # run every Friday
25
+
26
+
27
+ jobs:
28
+ build:
29
+ strategy:
30
+ fail-fast: false
31
+ matrix:
32
+ platform: [ubuntu-latest, macos-latest, windows-latest]
33
+ python-version: ['3.10', '3.11', '3.12', '3.13']
34
+ exclude: [
35
+ # windows runners are pretty scarce, so let's only run lowest and highest python version
36
+ {platform: windows-latest, python-version: '3.11'},
37
+ {platform: windows-latest, python-version: '3.12'},
38
+
39
+ # same, macos is a bit too slow and ubuntu covers python quirks well
40
+ {platform: macos-latest , python-version: '3.11'},
41
+ {platform: macos-latest , python-version: '3.12'},
42
+ ]
43
+
44
+ runs-on: ${{ matrix.platform }}
45
+
46
+ # useful for 'optional' pipelines
47
+ # continue-on-error: ${{ matrix.platform == 'windows-latest' }}
48
+
49
+ steps:
50
+ # ugh https://github.com/actions/toolkit/blob/main/docs/commands.md#path-manipulation
51
+ - run: echo "$HOME/.local/bin" >> $GITHUB_PATH
52
+
53
+ - uses: actions/checkout@v4
54
+ with:
55
+ submodules: recursive
56
+ fetch-depth: 0 # nicer to have all git history when debugging/for tests
57
+
58
+ - uses: actions/setup-python@v5
59
+ with:
60
+ python-version: ${{ matrix.python-version }}
61
+
62
+ - uses: astral-sh/setup-uv@v5
63
+ with:
64
+ enable-cache: false # we don't have lock files, so can't use them as cache key
65
+
66
+ - uses: mxschmitt/action-tmate@v3
67
+ if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
68
+
69
+ # explicit bash command is necessary for Windows CI runner, otherwise it thinks it's cmd...
70
+ - run: bash .ci/run
71
+ env:
72
+ # only compute lxml coverage on ubuntu; it crashes on windows
73
+ CI_MYPY_COVERAGE: ${{ matrix.platform == 'ubuntu-latest' && '--cobertura-xml-report .coverage.mypy-all' || '' }}
74
+
75
+ - if: matrix.platform == 'ubuntu-latest' # no need to compute coverage for other platforms
76
+ uses: codecov/codecov-action@v5
77
+ with:
78
+ fail_ci_if_error: true # default false
79
+ token: ${{ secrets.CODECOV_TOKEN }}
80
+ flags: mypy-${{ matrix.python-version }}
81
+ files: .coverage.mypy-all/cobertura.xml
82
+
83
+
84
+ pypi:
85
+ # Do not run it for PRs/cron schedule etc.
86
+ # NOTE: release tags are guarded by on: push: tags on the top.
87
+ if: github.event_name == 'push' && (startsWith(github.event.ref, 'refs/tags/') || (github.event.ref == format('refs/heads/{0}', github.event.repository.master_branch)))
88
+ # Ugh, I tried using matrix or something to explicitly generate only test pypi or prod pypi pipelines.
89
+ # But github actions is so shit, it's impossible to do any logic at all, e.g. doesn't support conditional matrix, if/else statements for variables etc.
90
+
91
+ needs: [build, end2end_tests_chrome, end2end_tests_firefox, install_and_run_test] # add all other jobs here
92
+
93
+ runs-on: ubuntu-latest
94
+
95
+ permissions:
96
+ # necessary for Trusted Publishing
97
+ id-token: write
98
+
99
+ steps:
100
+ # ugh https://github.com/actions/toolkit/blob/main/docs/commands.md#path-manipulation
101
+ - run: echo "$HOME/.local/bin" >> $GITHUB_PATH
102
+
103
+ - uses: actions/checkout@v4
104
+ with:
105
+ submodules: recursive
106
+ fetch-depth: 0 # pull all commits to correctly infer vcs version
107
+
108
+ - uses: actions/setup-python@v5
109
+ with:
110
+ python-version: '3.12'
111
+
112
+ - uses: astral-sh/setup-uv@v5
113
+ with:
114
+ enable-cache: false # we don't have lock files, so can't use them as cache key
115
+
116
+ - name: 'release to test pypi'
117
+ # always deploy merged master to test pypi
118
+ if: github.event.ref == format('refs/heads/{0}', github.event.repository.master_branch)
119
+ run: .ci/release-uv --use-test-pypi
120
+
121
+ - name: 'release to prod pypi'
122
+ # always deploy tags to release pypi
123
+ if: startsWith(github.event.ref, 'refs/tags/')
124
+ run: .ci/release-uv
125
+
126
+ ###
127
+ build_extension:
128
+ env:
129
+ name: 'promnesia'
130
+ runs-on: ubuntu-latest
131
+ steps:
132
+ - uses: actions/checkout@v4
133
+ with:
134
+ submodules: recursive
135
+ fetch-depth: 0 # nicer to have all git history when debugging/for tests
136
+
137
+ - uses: actions/setup-node@v4
138
+ with:
139
+ node-version: '20'
140
+
141
+ - run: extension/.ci/build --lint # debug version
142
+ - run: extension/.ci/build --lint --release
143
+
144
+ # TODO ugh. can't share github actions artifacts publicly...
145
+ # TODO for fuck's sake... why does it end up named as .zip.zip ????
146
+ - uses: actions/upload-artifact@v4
147
+ with:
148
+ name: '${{ env.name }}-chrome-debug-latest.zip'
149
+ path: 'extension/dist/artifacts/chrome/${{ env.name }}_dev_-*.zip'
150
+ - uses: actions/upload-artifact@v4
151
+ with:
152
+ name: '${{ env.name }}-chrome-release-latest.zip'
153
+ path: 'extension/dist/artifacts/chrome/${{ env.name }}-*.zip'
154
+ - uses: actions/upload-artifact@v4
155
+ with:
156
+ name: '${{ env.name }}-firefox-debug-latest.zip'
157
+ path: 'extension/dist/artifacts/firefox/${{ env.name }}_dev_-*.zip'
158
+ - uses: actions/upload-artifact@v4
159
+ with:
160
+ name: '${{ env.name }}-firefox-release-latest.zip'
161
+ path: 'extension/dist/artifacts/firefox/${{ env.name }}-*.zip'
162
+
163
+ # split in two pipelines to speedup running
164
+ end2end_tests_chrome:
165
+ runs-on: ubuntu-latest
166
+ steps:
167
+ - uses: actions/checkout@v4
168
+ with:
169
+ submodules: recursive
170
+ - uses: mxschmitt/action-tmate@v3
171
+ if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
172
+ - run: .ci/end2end/build_and_run.sh -k chrome
173
+
174
+ end2end_tests_firefox:
175
+ runs-on: ubuntu-latest
176
+ steps:
177
+ - uses: actions/checkout@v4
178
+ with:
179
+ submodules: recursive
180
+ - uses: mxschmitt/action-tmate@v3
181
+ if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
182
+ - run: .ci/end2end/build_and_run.sh -k firefox
183
+
184
+ install_and_run_test:
185
+ # todo use setup-python thing?
186
+ # todo run on macos too?
187
+ runs-on: ubuntu-latest
188
+ steps:
189
+ - uses: actions/checkout@v4
190
+ with:
191
+ submodules: recursive
192
+ - uses: mxschmitt/action-tmate@v3
193
+ if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
194
+
195
+ - run: .ci/github-ci-compat
196
+
197
+ - run: |
198
+ python3 -m pip install .
199
+ export PATH=.ci/fake-systemd:$PATH
200
+ tests/install_and_run
201
+
@@ -0,0 +1,38 @@
1
+ * =v1.0.20210415=
2
+
3
+ Thanks @ankostis, @purarue, @gms8994, @Cobertos and others for changes!
4
+
5
+ ** general
6
+ - *deprecate*: if you have =import promnesia= in the config you should switch it to =import promnesia.common=
7
+
8
+ see https://github.com/karlicoss/promnesia/pull/225
9
+ This brings us closer towards making promnesia a namespaced package to allow for better extensibility.
10
+ - better Windows support https://github.com/karlicoss/promnesia/pull/197
11
+
12
+ ** indexer
13
+ - *new*: 'update' style indexing is now the default https://github.com/karlicoss/promnesia/pull/211
14
+
15
+ It means that database won't be emptied before reindexing, so if you only index a single datasource, the data for other datasources will be untouched.
16
+ If you want the previous behaviour, you can use =--overwrite=
17
+ - fixes for race conditions during 'update' style indexing https://github.com/karlicoss/promnesia/pull/220
18
+ - minor cannon enhancements
19
+
20
+ ** server
21
+ - fix deprecation in sqlalchemy API https://github.com/karlicoss/promnesia/pull/221
22
+
23
+ ** sources
24
+
25
+ - *new*: viber data source (local desktop database)
26
+ - https://github.com/karlicoss/promnesia/pull/204
27
+ - https://github.com/karlicoss/promnesia/pull/208
28
+ - https://github.com/karlicoss/promnesia/pull/224
29
+ - *new*: safari browser data https://github.com/karlicoss/promnesia/pull/207
30
+ - *new*: stackexchange source https://github.com/karlicoss/promnesia/pull/189
31
+ - auto indexer: better directory pruning https://github.com/karlicoss/promnesia/pull/209
32
+ - telegram: enhancements to opt out of non-http link extraction
33
+ - firefox: handle Fenix databases properly https://github.com/karlicoss/promnesia/pull/227
34
+ - hypothesis:
35
+ - extract tags https://github.com/karlicoss/promnesia/pull/199
36
+ - extract URLs from annotation text https://github.com/karlicoss/promnesia/pull/222
37
+
38
+ * for older versions, see https://github.com/karlicoss/promnesia/releases
@@ -0,0 +1,66 @@
1
+ Metadata-Version: 2.4
2
+ Name: promnesia
3
+ Version: 1.4.20250909
4
+ Summary: Enhancement of your browsing history
5
+ Project-URL: Homepage, https://github.com/karlicoss/promnesia
6
+ Author-email: "Dima Gerasimov (@karlicoss)" <karlicoss@gmail.com>
7
+ Maintainer-email: "Dima Gerasimov (@karlicoss)" <karlicoss@gmail.com>
8
+ License: MIT License
9
+
10
+ Copyright (c) 2018 Dmitrii Gerasimov
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
29
+ License-File: LICENSE
30
+ Requires-Python: >=3.10
31
+ Requires-Dist: more-itertools
32
+ Requires-Dist: platformdirs
33
+ Requires-Dist: promnesia[indexer]
34
+ Requires-Dist: promnesia[server]
35
+ Requires-Dist: sqlalchemy>=2.0
36
+ Requires-Dist: typing-extensions
37
+ Requires-Dist: tzlocal
38
+ Provides-Extra: all
39
+ Requires-Dist: beautifulsoup4; extra == 'all'
40
+ Requires-Dist: fastapi; extra == 'all'
41
+ Requires-Dist: hpi; extra == 'all'
42
+ Requires-Dist: logzero; extra == 'all'
43
+ Requires-Dist: lxml; extra == 'all'
44
+ Requires-Dist: mistletoe; extra == 'all'
45
+ Requires-Dist: orgparse>=0.3.0; extra == 'all'
46
+ Requires-Dist: python-magic; extra == 'all'
47
+ Requires-Dist: urlextract; extra == 'all'
48
+ Requires-Dist: uvicorn[standard]; extra == 'all'
49
+ Provides-Extra: hpi
50
+ Requires-Dist: hpi; extra == 'hpi'
51
+ Provides-Extra: html
52
+ Requires-Dist: beautifulsoup4; extra == 'html'
53
+ Requires-Dist: lxml; extra == 'html'
54
+ Provides-Extra: indexer
55
+ Requires-Dist: urlextract; extra == 'indexer'
56
+ Provides-Extra: markdown
57
+ Requires-Dist: mistletoe; extra == 'markdown'
58
+ Provides-Extra: optional
59
+ Requires-Dist: logzero; extra == 'optional'
60
+ Requires-Dist: python-magic; extra == 'optional'
61
+ Provides-Extra: org
62
+ Requires-Dist: orgparse>=0.3.0; extra == 'org'
63
+ Provides-Extra: server
64
+ Requires-Dist: fastapi; extra == 'server'
65
+ Requires-Dist: uvicorn[standard]; extra == 'server'
66
+ Provides-Extra: telegram