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.
- promnesia-1.4.20250909/.ci/end2end/Dockerfile +19 -0
- promnesia-1.4.20250909/.ci/end2end/scripts/build_and_run_tests.sh +19 -0
- promnesia-1.4.20250909/.ci/github-ci-compat +20 -0
- promnesia-1.4.20250909/.ci/release-uv +56 -0
- promnesia-1.4.20250909/.ci/run +44 -0
- promnesia-1.4.20250909/.github/workflows/main.yml +201 -0
- promnesia-1.4.20250909/CHANGELOG.org +38 -0
- promnesia-1.4.20250909/PKG-INFO +66 -0
- promnesia-1.4.20250909/README.org +418 -0
- promnesia-1.4.20250909/conftest.py +57 -0
- promnesia-1.4.20250909/doc/SOURCES.org +243 -0
- promnesia-1.4.20250909/doc/config.py +171 -0
- promnesia-1.4.20250909/docker/docker_files/Dockerfile +17 -0
- promnesia-1.4.20250909/docker/docker_files/Dockerfile-indexer +7 -0
- promnesia-1.4.20250909/docker/docker_files/docker-compose.yaml +29 -0
- promnesia-1.4.20250909/docker/start.sh +6 -0
- promnesia-1.4.20250909/mypy.ini +18 -0
- promnesia-1.4.20250909/pyproject.toml +150 -0
- promnesia-1.4.20250909/pytest.ini +22 -0
- promnesia-1.4.20250909/ruff.toml +108 -0
- promnesia-1.4.20250909/scripts/browser_history.py +142 -0
- promnesia-1.4.20250909/src/promnesia/__init__.py +20 -0
- promnesia-1.4.20250909/src/promnesia/__main__.py +460 -0
- promnesia-1.4.20250909/src/promnesia/cannon.py +866 -0
- promnesia-1.4.20250909/src/promnesia/common.py +626 -0
- promnesia-1.4.20250909/src/promnesia/compare.py +161 -0
- promnesia-1.4.20250909/src/promnesia/compat.py +12 -0
- promnesia-1.4.20250909/src/promnesia/config.py +167 -0
- promnesia-1.4.20250909/src/promnesia/database/common.py +67 -0
- promnesia-1.4.20250909/src/promnesia/database/dump.py +187 -0
- promnesia-1.4.20250909/src/promnesia/database/load.py +50 -0
- promnesia-1.4.20250909/src/promnesia/extract.py +106 -0
- promnesia-1.4.20250909/src/promnesia/logging.py +168 -0
- promnesia-1.4.20250909/src/promnesia/misc/install_server.py +159 -0
- promnesia-1.4.20250909/src/promnesia/server.py +497 -0
- promnesia-1.4.20250909/src/promnesia/sources/auto.py +392 -0
- promnesia-1.4.20250909/src/promnesia/sources/auto_logseq.py +15 -0
- promnesia-1.4.20250909/src/promnesia/sources/auto_obsidian.py +8 -0
- promnesia-1.4.20250909/src/promnesia/sources/browser.py +99 -0
- promnesia-1.4.20250909/src/promnesia/sources/browser_legacy.py +313 -0
- promnesia-1.4.20250909/src/promnesia/sources/demo.py +35 -0
- promnesia-1.4.20250909/src/promnesia/sources/fbmessenger.py +35 -0
- promnesia-1.4.20250909/src/promnesia/sources/filetypes.py +156 -0
- promnesia-1.4.20250909/src/promnesia/sources/github.py +90 -0
- promnesia-1.4.20250909/src/promnesia/sources/guess.py +38 -0
- promnesia-1.4.20250909/src/promnesia/sources/hackernews.py +38 -0
- promnesia-1.4.20250909/src/promnesia/sources/hpi.py +13 -0
- promnesia-1.4.20250909/src/promnesia/sources/html.py +47 -0
- promnesia-1.4.20250909/src/promnesia/sources/hypothesis.py +49 -0
- promnesia-1.4.20250909/src/promnesia/sources/instapaper.py +33 -0
- promnesia-1.4.20250909/src/promnesia/sources/markdown.py +145 -0
- promnesia-1.4.20250909/src/promnesia/sources/org.py +195 -0
- promnesia-1.4.20250909/src/promnesia/sources/plaintext.py +118 -0
- promnesia-1.4.20250909/src/promnesia/sources/pocket.py +36 -0
- promnesia-1.4.20250909/src/promnesia/sources/reddit.py +170 -0
- promnesia-1.4.20250909/src/promnesia/sources/roamresearch.py +51 -0
- promnesia-1.4.20250909/src/promnesia/sources/rss.py +26 -0
- promnesia-1.4.20250909/src/promnesia/sources/shellcmd.py +95 -0
- promnesia-1.4.20250909/src/promnesia/sources/signal.py +443 -0
- promnesia-1.4.20250909/src/promnesia/sources/smscalls.py +32 -0
- promnesia-1.4.20250909/src/promnesia/sources/stackexchange.py +22 -0
- promnesia-1.4.20250909/src/promnesia/sources/takeout.py +210 -0
- promnesia-1.4.20250909/src/promnesia/sources/takeout_legacy.py +134 -0
- promnesia-1.4.20250909/src/promnesia/sources/telegram.py +90 -0
- promnesia-1.4.20250909/src/promnesia/sources/telegram_legacy.py +128 -0
- promnesia-1.4.20250909/src/promnesia/sources/twitter.py +60 -0
- promnesia-1.4.20250909/src/promnesia/sources/vcs.py +46 -0
- promnesia-1.4.20250909/src/promnesia/sources/viber.py +180 -0
- promnesia-1.4.20250909/src/promnesia/sources/website.py +58 -0
- promnesia-1.4.20250909/src/promnesia/sources/zulip.py +26 -0
- promnesia-1.4.20250909/src/promnesia/sqlite.py +48 -0
- promnesia-1.4.20250909/src/promnesia/tests/common.py +142 -0
- promnesia-1.4.20250909/src/promnesia/tests/server_helper.py +67 -0
- promnesia-1.4.20250909/src/promnesia/tests/sources/test_auto.py +65 -0
- promnesia-1.4.20250909/src/promnesia/tests/sources/test_filetypes.py +45 -0
- promnesia-1.4.20250909/src/promnesia/tests/sources/test_hypothesis.py +43 -0
- promnesia-1.4.20250909/src/promnesia/tests/sources/test_org.py +69 -0
- promnesia-1.4.20250909/src/promnesia/tests/sources/test_plaintext.py +27 -0
- promnesia-1.4.20250909/src/promnesia/tests/sources/test_shellcmd.py +22 -0
- promnesia-1.4.20250909/src/promnesia/tests/sources/test_takeout.py +56 -0
- promnesia-1.4.20250909/src/promnesia/tests/test_cannon.py +342 -0
- promnesia-1.4.20250909/src/promnesia/tests/test_cli.py +46 -0
- promnesia-1.4.20250909/src/promnesia/tests/test_compare.py +34 -0
- promnesia-1.4.20250909/src/promnesia/tests/test_config.py +289 -0
- promnesia-1.4.20250909/src/promnesia/tests/test_db_dump.py +223 -0
- promnesia-1.4.20250909/src/promnesia/tests/test_extract.py +68 -0
- promnesia-1.4.20250909/src/promnesia/tests/test_indexer.py +251 -0
- promnesia-1.4.20250909/src/promnesia/tests/test_server.py +291 -0
- promnesia-1.4.20250909/src/promnesia/tests/test_traverse.py +39 -0
- promnesia-1.4.20250909/src/promnesia/tests/utils.py +31 -0
- promnesia-1.4.20250909/tests/addon.py +367 -0
- promnesia-1.4.20250909/tests/addon_helper.py +171 -0
- promnesia-1.4.20250909/tests/common.py +80 -0
- promnesia-1.4.20250909/tests/convert_screencast.py +53 -0
- promnesia-1.4.20250909/tests/demos.py +822 -0
- promnesia-1.4.20250909/tests/end2end_test.py +866 -0
- promnesia-1.4.20250909/tests/record.py +133 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/.ci/run +40 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/.github/workflows/main.yml +58 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/.gitignore +160 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/.gitmodules +9 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/LICENSE +21 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/README.org +54 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/conftest.py +38 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/dal.py +47 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/export.py +47 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/mypy.ini +17 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/pyproject.toml +62 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/pytest.ini +16 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/ruff.toml +29 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/LICENSE +201 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/README.md +47 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/hypothesis/__init__.py +2 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/hypothesis/hypothesis.py +316 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/Hypothesis/tests/test.py +183 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/__init__.py +7 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/dal.py +202 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/export.py +54 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/exporthelpers/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/exporthelpers/__init__.py +4 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/exporthelpers/dal_helper.py +177 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/exporthelpers/export_helper.py +143 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/exporthelpers/logging_helper.py +241 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/.gitignore +6 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/README.md +1 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_config.yml +8 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_data/annotations.json +10257 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_data/categories.yml +26 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_data/documents.yml +59 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_data/polemictweet.yml +37 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/badge.html +18 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/card.quote.html +30 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/contributors.html +0 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/count.html +34 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/discussions.html +13 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/documents.html +85 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/highlights.html +51 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/replies.html +7 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/reply.html +21 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/sidebar.html +77 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/thread.html +0 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_includes/threads.html +17 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_layouts/default.html +35 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/_layouts/none.html +1 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/api/annotations.json +7169 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/css/main.scss +100 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/data/annotations.json +10008 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/glossary.html +99 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/graph.html +93 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/testdata/netrights-dashboard-mockup/index.html +63 -0
- promnesia-1.4.20250909/tests/testdata/hypexport/tox.ini +47 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/.github/ISSUE_TEMPLATE.md +45 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/.gitignore +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/.gitmodules +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/.travis.yml +42 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/CONTRIBUTING.org +59 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/LICENSE +674 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/Makefile +265 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/README.org +485 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/.htmltest.yml +94 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/config.toml +114 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/content/.git_keep +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/data/users.toml +430 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/doc-setupfile.org +22 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/export-gh-doc-old.el +60 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/github-files.org +72 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/layouts/_default/examples.html +161 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/layouts/section/doc.html +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/layouts/section/issues.html +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/layouts/section/test.html +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/ox-hugo-export-gh-doc.el +56 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/ox-hugo-manual.org +3162 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/_headers +59 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/_redirects +3 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/css/github_chroma.css +71 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/css/style.css +173 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/css/trac_chroma.css +65 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/css/trac_pygments.css +67 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/favicon-196x196.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/favicon.ico +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/images-in-content-screenshot.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/one-post-per-file.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/one-post-per-subtree.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/org-mode-unicorn-logo-200px.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/org-mode-unicorn-logo-50px.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/static/images/ox-hugo-doc-source-viewing-in-Termux-Android.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/LICENSE +674 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/README.org +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/layouts/partials/debugprint.css +51 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/layouts/partials/debugprint.html +219 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/layouts/shortcodes/debug.html +20 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-debugprint/theme.toml +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/.gitmodules +3 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/LICENSE +36 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/README.md +74 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/config.toml +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/LICENSE +21 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/README.md +25 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/config.toml +56 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/_index.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/about.md +22 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/post/creating-a-new-theme.md +1488 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/post/goisforlovers.md +400 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/post/hugoisforlovers.md +99 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/content/post/migrate-from-jekyll.md +219 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/exampleSite.org +2001 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/layouts/.gitkeep +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/static/.gitignore +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/static/css/github_chroma.css +72 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/.ignore +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/LICENSE +674 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/README.org +60 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/exampleSite/themes/hugo-search-fuse-js/theme.toml +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/404.html +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/_default/baseof.html +40 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/_default/li.html +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/_default/search.json +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/_default/single.html +26 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/index.html +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/author.html +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/date-maybe.html +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/footer.html +27 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/head.html +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/headline-hash.html +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/mathjax.html +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/opengraph.html +92 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/sidebar/buttons.html +31 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/sidebar/donate.html +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/sidebar/menu.html +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/sidebar/relations.html +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/sidebar/sidebar.html +23 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/summary_minus_toc.html +27 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/toc_on_side.html +41 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/partials/twitter_cards.html +38 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/shortcodes/admonition.html +4 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/layouts/shortcodes/figure.html +33 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/netlify.toml +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/css/basic.css +599 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/css/highlight.css +86 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/css/onyx.css +814 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/favicon.ico +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/images/forkme_right_darkblue_ribbon.png +0 -0
- 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
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/static/js/mathjax-config.js +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-onyx-theme/theme.toml +18 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/LICENSE +674 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/README.md +89 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/layouts/_default/search.html +55 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/layouts/_default/search.json +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/.ignore +1 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/iecompat/fetch.min.js +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/iecompat/promises.min.js +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/iecompat/remove.min.js +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/libs/iecompat/template.min.js +11 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/static/js/search.js +98 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/doc/themes/hugo-search-fuse-js/theme.toml +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/org-hugo-auto-export-mode.el +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/ox-blackfriday.el +1239 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/ox-hugo-pandoc-cite.el +346 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/ox-hugo.el +4330 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/issue-272-chkbox-items-to-front-matter.el +47 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/setup-ox-hugo.el +304 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/README.org +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/archetypes/default.md +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/config.toml +53 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/_index.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/alias-test/alias-without-section-2.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/articles/article-1.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/articles/article-2.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/articles/emacs/hugo-section-frag-post-in-articles-emacs.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/_index.md +30 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter1/_index.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter1/section1.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter1/section2.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter2/_index.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter2/section1.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/book1/chapter2/section2.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundle-concat/articles/_index.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundle-concat/articles/article-one/_index.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundle-concat/articles/article-one/chapter-one/_index.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundle-concat/articles/article-one/chapter-one/section-1a.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundle-concat/articles/article-one/chapter-one/section-1b.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/_index.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/headless-page-bundle-x/bar.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/headless-page-bundle-x/foo.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/headless-page-bundle-x/index.md +30 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/headless-page-bundle-x/zoo.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-a/bar.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-a/copy-2-of-unicorn-logo.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-a/foo.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-a/index.md +73 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-b/copy-2-of-unicorn-logo.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/bundles/page-bundle-b/index.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/dir-locals-test/dir-locals-test.md +57 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/exclude_tags_tests/post1.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/page-bundle-images-in-same-dir/gnu.png +0 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/page-bundle-images-in-same-dir/index.md +18 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/post1.md +27 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/post2.md +27 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/post3.md +27 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/images-in-content/post4.md +27 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/325/index.md +42 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/333.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/335/index.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/336_test.md +32 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/360-bundle/index.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/360-bundle/org.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/issues/360.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/org-copy-3.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alert-short-code-lookalike.md +175 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alias-different-section.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alias-multiple-with-section.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alias-multiple-without-section.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alias-root-section.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/alias-without-section-1.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/allow-empty-titles-1.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/allow-empty-titles-2.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/audio-front-matter.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/auto-set-lastmod.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-ext-enabling-disabling-toml.md +68 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-ext-enabling-disabling-yaml.md +68 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-ext-hardlinebreak-toml.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-ext-hardlinebreak-wrong-case-toml.md +32 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-ext-hardlinebreak-yaml.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-fractions-false.md +34 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/blackfriday-fractions-true.md +35 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/cat-a-and-cat-b.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/cat-a-post-1.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/center-align.md +40 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/checklist.md +32 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citation-forms-apa-csl.md +105 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citation-forms.md +102 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citation-linking.md +58 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citations-example-toml.md +127 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citations-example-yaml.md +67 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citations-none.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citations-with-captions/index.md +65 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/citations-with-captions/nested-boxes.svg +20 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/code-fenced-src-blocks-default.md +84 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/code-fenced-src-blocks-with-backticks.md +57 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/code-fenced-src-blocks.md +85 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/consecutive-quotes.md +23 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/consecutive-verses.md +39 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-creator.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-fm-convert-chkbox-list-to-fm-1.md +16 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-fm-convert-chkbox-list-to-fm-2.md +16 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-multiple-lines.md +34 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-one-line.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-with-list-values-toml.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-with-list-values-yaml.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-with-nested-maps-toml.md +27 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/custom-front-matter-with-nested-maps-yaml.md +27 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-just-date.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-org-time-stamp.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-plus-time-minus-utc.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-plus-time-plus-utc.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-plus-time-utc.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-plus-time.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-with-only-date.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-with-time-and-time-zone.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/date-with-time.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/dealing-with-underscores.md +17 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--default-h.md +31 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--h1.md +34 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--h2.md +33 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--h5.md +30 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--h6--offset0.md +29 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/deeply-nested-org-todo-headings--h6.md +30 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/default-creator.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-multi-line-escaping-backslashes-org-special-block-toml.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-multi-line-escaping-backslashes-org-special-block-yaml.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-multi-line-org-special-block-toml.md +17 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-multi-line-org-special-block-yaml.md +18 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-single-line-escaping-backslashes-org-special-block-toml.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-single-line-escaping-backslashes-org-special-block-yaml.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-single-line-org-special-block-toml.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-single-line-org-special-block-yaml.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/description-special-block-description.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/details-and-summary.md +235 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/disable-author.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/disable-title-1.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/disable-title-2.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/disabling-pandoc-citations-in-a-subtree-empty-string.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/disabling-pandoc-citations-in-a-subtree-nil-string.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/dont-leak-subheading-tags.md +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/draft-state-other-headings-draft.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/draft-state-todo.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/duplicate-authors.md +16 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/emacs-post-1.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/emacs-post-2.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/embedded-video.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/en/date-and-slug-inheritance.en.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/en-dash-em-dash-hellip-in-titles.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/equation-latex-frag.md +49 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/equations-bf-escaping.md +75 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/equations-with-r-c.md +36 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/es/date-and-slug-inheritance.es.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/escaping-hashes-and-exclamations-in-body.md +29 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-block-following-a-list.md +36 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-block-inside-quote-block.md +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-block-with-escaped-org-inside-quote-block.md +16 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-block-with-line-numbers.md +40 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-blocks-inside-quote-block-and-another-example-block.md +25 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-blocks-with-attr-html.md +21 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/example-simple.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/expiry-date-deadline.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/expiry-date-hugo-compatible-date.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/expiry-date-org-time-stamp.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export-without-emphasize.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_block_html.md +74 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_block_hugo.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_block_markdown.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_snippet_html.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_snippet_hugo.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/export_snippet_markdown.md +16 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/external-links.md +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/figure-shortcode-and-attr-html.md +153 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/filling-is-not-preserved.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/filling-is-preserved.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/filling-not-preserved-for-chinese-characters--preserve-filling-off.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/filling-not-preserved-for-chinese-characters--preserve-filling-on.md +16 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/footnotes-1.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/footnotes-2.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/footnotes-bind-to-preceding-word.md +169 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/footnotes-in-a-row.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/force-line-break.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/force-ordered-list-numbering.md +39 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/front-matter-bigint-value.md +20 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/front-matter-toml-toml-extra.md +34 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/front-matter-toml-yaml-extra.md +19 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/front-matter-yaml-toml-extra.md +19 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/front-matter-yaml-yaml-extra.md +30 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/general-formatting.md +23 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/header-image-using-resources/index.md +53 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/highlight-shortcode-src-blocks.md +85 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-auto-weight-ineffective-for-per-file-exports.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-false-todo-state-done.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-false-todo-state-draft.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-false-todo-state-none.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-none-todo-state-done.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-none-todo-state-draft.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-none-todo-state-none.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-none-todo-state-test-done.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-none-todo-state-test-todo.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-true-todo-state-done.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-true-todo-state-draft.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-draft-true-todo-state-none.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-menu-as-keyword--post-with-menu-1.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-menu-as-keyword--post-with-menu-2.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-menu-as-keyword--post-with-menu-3.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-menu-as-keyword--post-with-menu-4.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-menu-as-keyword--post-with-menu-5.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-1.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-123.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-2.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-3.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-4.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-4567.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hugo-post-weight-5.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphen-categories-dont-prefer.md +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphen-categories-prefer.md +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphen-tags-dont-prefer.md +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphen-tags-prefer.md +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphens-and-spaces-in-categories.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/hyphens-and-spaces-in-tags.md +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/image-captions.md +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/image-links.md +151 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/images-multiple.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/images-single.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/indented-equations.md +33 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/inheriting-tags.md +19 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/inline-images.md +68 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/inlined-svg.md +55 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/invalid-date.md +20 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/invalid-nocites.md +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/italicize-links-with-underscores.md +32 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/kbd-tag-default.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/kbd-tag-no.md +22 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/kbd-tag-yes.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/keyword-collection.md +95 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/keywords-set-using-multiple-properties.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/lastmod-date-hugo-compatible-date.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/lastmod-date-org-time-stamp.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/lastmod-not-suppressed-suppress-period-zero.md +16 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/lastmod-set-manually-dont-suppress.md +19 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/layout-front-matter.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/level-offset-0.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/level-offset-1.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/level-offset-2.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/level-offset-default.md +105 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/level-offset-unset.md +17 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/link-destination.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/link-heading-custom-id.md +227 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/link-to-headings-by-name.md +61 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-outside-the-same-post.md +82 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-to-equations.md +78 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-to-images.md +101 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-to-org-targets.md +76 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-to-source-blocks.md +125 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-to-tables.md +115 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/links-with-target-attribute.md +42 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/linktitle-front-matter.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/list-following-a-list.md +76 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/list-has-example-block-with-list-syntax.md +43 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/list-has-src-block-but-no-list-syntax.md +18 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/list-has-src-block-with-list-syntax.md +43 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/lists-with-attr-html.md +68 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/locale-auto-detect.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/locale-specified.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/markup-front-matter.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-alist-meta-data-toml-override-full.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-alist-meta-data-toml-override-partial.md +21 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-meta-data-yaml.md +18 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-meta-data-yaml2.md +16 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-meta-data-yaml3.md +18 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/menu-title-property.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multi-line-bold.md +25 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multi-line-footnote-japanese.md +17 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multi-line-footnote.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multi-ref-same-footnote.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multiple-authors.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multiple-example-blocks-inside-quote-block.md +19 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/multiple-keywords-in-front-matter.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/ndash-and-mdash.md +25 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/nested-bold-italics.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/nested-lists.md +57 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/no-spaces-in-categories.md +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/no-spaces-in-tags.md +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/no-toc-in-summary--with-more.md +41 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/no-toc-in-summary--without-more.md +39 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/one-verse.md +18 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/options-num-0.md +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/options-num-2.md +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/options-num-all.md +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/options-num-nil.md +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/options-num-onlytoc.md +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/org-babel-results.md +98 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/org-source-block-pygments.md +37 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/org-todo-kwd-with-double-underscores.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/output-empty.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/output-html-and-json.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/overriding-tags.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/page-using-headless-page-bundle.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/paired-shortcodes-special-blocks-named-arguments.md +30 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/paired-shortcodes-special-blocks-no-arguments.md +55 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/paired-shortcodes-special-blocks-positional-arguments.md +107 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/paragraphs-in-lists.md +21 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/paragraphs-with-attr-html.md +29 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/parsing-date-from-closed-property.md +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/plural-author-front-matter.md +9 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-1.md +7 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-2.md +8 -0
- 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
- 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
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-description-quotes.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-heading-slugs.md +82 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-title-quotes.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-done.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-0-num-t.md +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-1-num-onlytoc.md +64 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-2-num-nil.md +65 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-2-num-t.md +70 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-nil-num-nil.md +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-t-num-nil.md +69 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-t-num-onlytoc.md +74 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-export-options-toc-t-num-t.md +74 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-menu-1.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-menu-2.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-menu-3.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-menu-4.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-menu-5.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-toc-keyword-0.md +46 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-toc-keyword-2.md +65 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-toc-keyword-6.md +69 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/post-with-todo.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/prep.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/publish-date-hugo-compatible-date.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/publish-date-org-time-stamp.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/publish-date-scheduled.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/quote-blocks-in-numbered-lists.md +31 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/quote-blocks-with-attr-html.md +17 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/radio-targets.md +220 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/remove-a-front-matter-key.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-both-tags-and-categories-keys.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-custom-keys.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-description-with-summary.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-keys-using-multiple-properties.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-non-existing-keys.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-only-categories-key.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-only-linktitle-key.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/replace-only-tags-key.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/resources-custom-params-list-values-toml.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/resources-custom-params-list-values-yaml.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/resources-in-front-matter-toml.md +17 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/resources-in-front-matter-yaml.md +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/resources-only-custom-params.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/series-multiple.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/series-single.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/setting-heading-anchors.md +24 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/shortcode-src-blocks.md +50 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/simple-table.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/single-author-custom.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/single-author.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/single-double-quotes.md +21 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/single-keyword-in-front-matter.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/slug-front-matter.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-caption.md +23 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-indented.md +113 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-inside-quote-block-and-another-source-block.md +82 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-md-with-hugo-shortcodes.md +56 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-with-highlighting.md +134 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-block-with-line-numbers.md +95 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/source-blocks-with-attr-html.md +21 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/spaces-in-categories.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/spaces-in-tags.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/special-block-empty.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/special-block-whitespace.md +16 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/special-blocks.md +97 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/src-and-example-blocks-in-lists.md +49 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/src-block-following-a-list.md +36 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/src-block-outside-list-with-list-syntax.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/sub-superscripts-dont-require-braces.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/sub-superscripts-require-braces.md +20 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/sub1/hugo-section-frag-post-in-posts-sub1.md +6 -0
- 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
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/summary-splitter.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/suppress-lastmod-in-subtree-with-auto-lastmod.md +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/suppress-lastmod-non-zero-but-date-unset.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/swap-tags-and-categories.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-bottom-border.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-caption.md +39 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-column-alignment.md +38 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-name.md +22 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-only-rule-after-first-row.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-styling.md +526 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-top-and-bottom-border.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-top-border.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-with-borders-and-rule-after-first.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-with-narrowest-columns.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-with-single-cell.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-with-single-column.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/table-with-single-row.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-1.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-2.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-3.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-4.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-auto-1.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-and-page-weights-auto-2.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-categories-weight-222.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-categories-weight-auto-1.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-categories-weight-auto-2.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-tags-weight-111.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-tags-weight-auto-1.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/taxonomy-tags-weight-auto-2.md +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/test-tags.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title-with-just-date-chars.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title_with_asterisks.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title_with_asterisks_underscores_backticks.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title_with_backticks_equals_tildes.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title_with_forward_slashes.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/title_with_under_scores.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/toc-local.md +123 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/toc-target.md +56 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/toc-with-todo-disabled.md +45 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/toc-with-todo-enabled.md +45 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/type-and-layout-front-matter.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/type-front-matter.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/under-scores-in-title.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/unsuppress-lastmod-in-subtree.md +17 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/url-encoding-in-links.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/url-front-matter.md +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/using-org-macros-in-lieu-of-hugo-shortcodes.md +16 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/verse-for-indentation.md +71 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/videos-multiple.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/videos-single.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/posts/wrapping-org-headings-in-html-tags.md +63 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/real-examples/multifractals-in-ecology-using-r.md +151 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/real-examples/nn-intro.md +779 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/root-level-content-empty-section.md +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/root-level-content-section-set-to-slash.md +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/search.md +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/section-a/post-a1.md +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/section-a/post-ax.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/links-to-org-elements.md +345 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/page-bundle-file-based-flow/index.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/post-draft.md +25 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/post-toml.md +68 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/post-with-slug.md +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/post-yaml.md +45 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/singles/post_with_underscore_in_name.md +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/writing-hugo-blog-in-org-file-export.md +45 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/writing-hugo-blog-in-org-subtree-export.md +44 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content/zoo/post-in-zoo-section.md +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/all-posts.org +7828 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/auto-set-lastmod.org +13 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/cite/bib/bib1.bib +22 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/cite/bib/bib2.bib +29 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/cite/bib/bib3.bib +57 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/cite/csl/apa.csl +777 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/construct-hugo-front-matter-from-menu-meta-data.org +18 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/deep-nesting.org +94 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/dir-locals/dir-locals-test.org +36 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/exclude_tags_test.org +17 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/hugo-menu-as-keyword.org +26 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/hugo-weight-as-keyword-auto-calc.org +27 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images/citations-with-captions/nested-boxes.svg +20 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images/issues/360-bundle/org.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images/svg-with-hyperlinks.svg +19 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/gnu.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/images/_home/org-copy-3.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/images/org-copy-1.png +0 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/images-in-content.org +78 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/org.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/post3/gnu-copy.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/post3/post3.org +29 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/post4/org-copy.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/images-in-content/post4/post4.org +29 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/issues.org +63 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/keyword-collection.org +118 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/mandatory-EXPORT_FILE_NAME-for-subtree-export.org +9 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/misc/common.org +60 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/screenshot-subtree-export-example.org +40 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/allow-empty-titles-1.org +8 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/disable-title-1.org +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/empty_tag.org +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/export-without-emphasize.org +16 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/links-to-org-elements.org +184 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/page-bundle-file-based-flow.org +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/post-draft.org +20 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/post-toml.org +44 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/post-with-slug.org +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/post-yaml.org +42 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/single-posts/post_with_underscore_in_name.org +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/src-blocks-with-highlight-shortcode.org +50 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/suppress-lastmod-period-non-zero.org +82 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/suppress-lastmod-period-zero.org +31 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/tags-and-categories.org +49 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/template.org +17 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/content-org/writing-hugo-blog-in-org-file-export.org +42 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/files-to-be-copied-to-static/foo/unicorn logo.png +0 -0
- 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
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/files-to-be-copied-to-static/static/images/unicorn-logo-small.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/_default/alternate-single.html +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/_default/headless-bundle-single.html +79 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/_default/single.json +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/section/book1.html +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/alert.html +3 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/mdshortcode-named.html +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/mdshortcode.html +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/myshortcode-named.html +10 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/myshortcode-pos.html +7 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/shortcodes/myshortcode.html +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/type-test/alternate-single.html +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/layouts/type-test/single.html +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/css/style.css +21 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/MultifractalsInR/C3_BoxCounting.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/MultifractalsInR/C3_Cladoceran.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/MultifractalsInR/C3_Clouds.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/MultifractalsInR/fractal-ice.jpg +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/cross-entropy.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/mse.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/neuron.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/nn-weight.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/overfit-10.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/Vonng/overfit-3.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/copy-of-unicorn-logo-page-bundle.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/copy-of-unicorn-logo.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/org-mode-unicorn-logo.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/images/unicorn-logo-small.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/copy-2-of-unicorn-logo.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/gnu-copy.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/gnu.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/org-copy.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/org.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/ox-hugo/unicorn logo.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/static/videos/sample.mp4 +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/.gitignore +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/.gitmodules +6 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/LICENSE.md +21 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/README.md +90 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/archetypes/.gitkeep +2 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/config.toml +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/LICENSE +21 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/README.md +25 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/config.toml +34 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/content/about.md +22 -0
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/content/post/goisforlovers.md +400 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/content/post/hugoisforlovers.md +99 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/content/post/migrate-from-jekyll.md +219 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/content/search.md +14 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/exampleSite.org +2004 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/layouts/.gitkeep +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/static/.gitignore +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/.ignore +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-debugprint/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-debugprint/LICENSE +674 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-debugprint/README.org +10 -0
- 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
- 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
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-debugprint/theme.toml +15 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/.git +1 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/exampleSite/themes/hugo-search-fuse-js/LICENSE +674 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/images/screenshot.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/images/tn.png +0 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/404.html +19 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/baseof.html +214 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/li.html +12 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/list.html +74 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/single.html +94 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/summary.html +23 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/_default/terms.html +50 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/index.html +113 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/archive/version_ge.html +74 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/header_image.html +34 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/mathjax.html +11 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/opengraph.html +93 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/summary_minus_toc.html +20 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/partials/twitter_cards.html +41 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/layouts/shortcodes/figure2.html +18 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/netlify.toml +19 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/static/css/github_chroma.css +71 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/static/js/mathjax-config.js +5 -0
- promnesia-1.4.20250909/tests/testdata/ox-hugo/test/site/themes/hugo-bare-min-theme/theme.toml +15 -0
- promnesia-1.4.20250909/tests/testdata/test_config.py +35 -0
- promnesia-1.4.20250909/tests/testdata/test_multiple_page_updates/index.html +32 -0
- promnesia-1.4.20250909/tests/webdriver_utils.py +162 -0
- promnesia-1.4.20250909/tox.ini +150 -0
- promnesia-1.2.20240810/.ci/end2end/Dockerfile +0 -19
- promnesia-1.2.20240810/.ci/end2end/scripts/build_and_run_tests.sh +0 -15
- promnesia-1.2.20240810/.ci/github-ci-compat +0 -27
- promnesia-1.2.20240810/.ci/run +0 -48
- promnesia-1.2.20240810/.github/workflows/main.yml +0 -180
- promnesia-1.2.20240810/CHANGELOG.org +0 -38
- promnesia-1.2.20240810/PKG-INFO +0 -53
- promnesia-1.2.20240810/README.org +0 -418
- promnesia-1.2.20240810/doc/SOURCES.org +0 -243
- promnesia-1.2.20240810/doc/config.py +0 -173
- promnesia-1.2.20240810/docker/docker_files/Dockerfile +0 -21
- promnesia-1.2.20240810/docker/docker_files/Dockerfile-indexer +0 -6
- promnesia-1.2.20240810/docker/docker_files/docker-compose.yaml +0 -27
- promnesia-1.2.20240810/docker/start.sh +0 -6
- promnesia-1.2.20240810/mypy.ini +0 -15
- promnesia-1.2.20240810/pytest.ini +0 -14
- promnesia-1.2.20240810/ruff.toml +0 -25
- promnesia-1.2.20240810/scripts/browser_history.py +0 -130
- promnesia-1.2.20240810/setup.cfg +0 -4
- promnesia-1.2.20240810/setup.py +0 -117
- promnesia-1.2.20240810/src/promnesia/__init__.py +0 -6
- promnesia-1.2.20240810/src/promnesia/__main__.py +0 -434
- promnesia-1.2.20240810/src/promnesia/cannon.py +0 -865
- promnesia-1.2.20240810/src/promnesia/common.py +0 -607
- promnesia-1.2.20240810/src/promnesia/compare.py +0 -158
- promnesia-1.2.20240810/src/promnesia/compat.py +0 -12
- promnesia-1.2.20240810/src/promnesia/config.py +0 -164
- promnesia-1.2.20240810/src/promnesia/database/common.py +0 -66
- promnesia-1.2.20240810/src/promnesia/database/dump.py +0 -187
- promnesia-1.2.20240810/src/promnesia/database/load.py +0 -50
- promnesia-1.2.20240810/src/promnesia/extract.py +0 -104
- promnesia-1.2.20240810/src/promnesia/kjson.py +0 -121
- promnesia-1.2.20240810/src/promnesia/logging.py +0 -156
- promnesia-1.2.20240810/src/promnesia/misc/install_server.py +0 -154
- promnesia-1.2.20240810/src/promnesia/server.py +0 -470
- promnesia-1.2.20240810/src/promnesia/sources/auto.py +0 -365
- promnesia-1.2.20240810/src/promnesia/sources/auto_logseq.py +0 -14
- promnesia-1.2.20240810/src/promnesia/sources/auto_obsidian.py +0 -8
- promnesia-1.2.20240810/src/promnesia/sources/browser.py +0 -89
- promnesia-1.2.20240810/src/promnesia/sources/browser_legacy.py +0 -298
- promnesia-1.2.20240810/src/promnesia/sources/demo.py +0 -36
- promnesia-1.2.20240810/src/promnesia/sources/fbmessenger.py +0 -35
- promnesia-1.2.20240810/src/promnesia/sources/filetypes.py +0 -150
- promnesia-1.2.20240810/src/promnesia/sources/github.py +0 -89
- promnesia-1.2.20240810/src/promnesia/sources/guess.py +0 -34
- promnesia-1.2.20240810/src/promnesia/sources/hackernews.py +0 -40
- promnesia-1.2.20240810/src/promnesia/sources/hpi.py +0 -11
- promnesia-1.2.20240810/src/promnesia/sources/html.py +0 -43
- promnesia-1.2.20240810/src/promnesia/sources/hypothesis.py +0 -48
- promnesia-1.2.20240810/src/promnesia/sources/instapaper.py +0 -32
- promnesia-1.2.20240810/src/promnesia/sources/markdown.py +0 -135
- promnesia-1.2.20240810/src/promnesia/sources/org.py +0 -176
- promnesia-1.2.20240810/src/promnesia/sources/plaintext.py +0 -116
- promnesia-1.2.20240810/src/promnesia/sources/pocket.py +0 -34
- promnesia-1.2.20240810/src/promnesia/sources/reddit.py +0 -172
- promnesia-1.2.20240810/src/promnesia/sources/roamresearch.py +0 -48
- promnesia-1.2.20240810/src/promnesia/sources/rss.py +0 -28
- promnesia-1.2.20240810/src/promnesia/sources/shellcmd.py +0 -85
- promnesia-1.2.20240810/src/promnesia/sources/signal.py +0 -442
- promnesia-1.2.20240810/src/promnesia/sources/smscalls.py +0 -33
- promnesia-1.2.20240810/src/promnesia/sources/stackexchange.py +0 -21
- promnesia-1.2.20240810/src/promnesia/sources/takeout.py +0 -207
- promnesia-1.2.20240810/src/promnesia/sources/takeout_legacy.py +0 -124
- promnesia-1.2.20240810/src/promnesia/sources/telegram.py +0 -84
- promnesia-1.2.20240810/src/promnesia/sources/telegram_legacy.py +0 -117
- promnesia-1.2.20240810/src/promnesia/sources/twitter.py +0 -59
- promnesia-1.2.20240810/src/promnesia/sources/vcs.py +0 -41
- promnesia-1.2.20240810/src/promnesia/sources/viber.py +0 -179
- promnesia-1.2.20240810/src/promnesia/sources/website.py +0 -57
- promnesia-1.2.20240810/src/promnesia/sources/zulip.py +0 -25
- promnesia-1.2.20240810/src/promnesia/sqlite.py +0 -42
- promnesia-1.2.20240810/src/promnesia/tests/common.py +0 -137
- promnesia-1.2.20240810/src/promnesia/tests/server_helper.py +0 -64
- promnesia-1.2.20240810/src/promnesia/tests/sources/test_auto.py +0 -66
- promnesia-1.2.20240810/src/promnesia/tests/sources/test_filetypes.py +0 -42
- promnesia-1.2.20240810/src/promnesia/tests/sources/test_hypothesis.py +0 -39
- promnesia-1.2.20240810/src/promnesia/tests/sources/test_org.py +0 -65
- promnesia-1.2.20240810/src/promnesia/tests/sources/test_plaintext.py +0 -26
- promnesia-1.2.20240810/src/promnesia/tests/sources/test_shellcmd.py +0 -22
- promnesia-1.2.20240810/src/promnesia/tests/sources/test_takeout.py +0 -58
- promnesia-1.2.20240810/src/promnesia/tests/test_cannon.py +0 -325
- promnesia-1.2.20240810/src/promnesia/tests/test_cli.py +0 -42
- promnesia-1.2.20240810/src/promnesia/tests/test_compare.py +0 -30
- promnesia-1.2.20240810/src/promnesia/tests/test_config.py +0 -290
- promnesia-1.2.20240810/src/promnesia/tests/test_db_dump.py +0 -223
- promnesia-1.2.20240810/src/promnesia/tests/test_extract.py +0 -61
- promnesia-1.2.20240810/src/promnesia/tests/test_indexer.py +0 -245
- promnesia-1.2.20240810/src/promnesia/tests/test_server.py +0 -292
- promnesia-1.2.20240810/src/promnesia/tests/test_traverse.py +0 -41
- promnesia-1.2.20240810/src/promnesia/tests/utils.py +0 -35
- promnesia-1.2.20240810/src/promnesia.egg-info/PKG-INFO +0 -53
- promnesia-1.2.20240810/src/promnesia.egg-info/SOURCES.txt +0 -215
- promnesia-1.2.20240810/src/promnesia.egg-info/dependency_links.txt +0 -1
- promnesia-1.2.20240810/src/promnesia.egg-info/entry_points.txt +0 -2
- promnesia-1.2.20240810/src/promnesia.egg-info/not-zip-safe +0 -1
- promnesia-1.2.20240810/src/promnesia.egg-info/requires.txt +0 -53
- promnesia-1.2.20240810/src/promnesia.egg-info/top_level.txt +0 -1
- promnesia-1.2.20240810/tests/addon.py +0 -364
- promnesia-1.2.20240810/tests/addon_helper.py +0 -172
- promnesia-1.2.20240810/tests/common.py +0 -69
- promnesia-1.2.20240810/tests/convert_screencast.py +0 -51
- promnesia-1.2.20240810/tests/demos.py +0 -726
- promnesia-1.2.20240810/tests/end2end_test.py +0 -837
- promnesia-1.2.20240810/tests/record.py +0 -135
- promnesia-1.2.20240810/tests/testdata/test_config.py +0 -35
- promnesia-1.2.20240810/tests/webdriver_utils.py +0 -162
- promnesia-1.2.20240810/tox.ini +0 -99
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/end2end/.dockerignore +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/end2end/build_and_run.sh +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/end2end/scripts/setup_chrome.sh +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/end2end/scripts/setup_firefox.sh +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/end2end/scripts/setup_node.sh +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/fake-systemd/systemctl +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.ci/release +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.dockerignore +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.gitignore +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/.gitmodules +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/LICENSE +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/benchmarks/20231115.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/ci/run-github-locally +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/doc/DEVELOPMENT.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/doc/GUIDE.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/doc/PRIVACY.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/doc/TROUBLESHOOTING.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/doc/addons-mozilla-org.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/docker/.gitignore +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/docker/docker_files/indexer-config.py.example +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/docker/docker_files/indexer-entrypoint.sh +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/docker/get-some-data.sh +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/docker/init.sh +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/.ci/build +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/.editorconfig +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/MANUAL-TESTS.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/TODO.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/__mocks__/browser.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/__mocks__/dom-form-serializer.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/amo-metadata.json +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/babel.config.cjs +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/build +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/eslint.config.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/generate_manifest.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/jest.config.cjs +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/old/flow-typed/webextension-polyfill.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/old/patcher.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/old/webpack.config.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/package-lock.json +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/package.json +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/rollup.config.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/api.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/background.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/background_chrome_mv2.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/common.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/compat.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/display.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/filterlist.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/generate +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_blacklisted_48.png +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_blue_48.png +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_boring_48.png +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_error.png +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_not_visited_48.png +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_relatives_48.png +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/ic_visited_48.png +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/images/source_48.svg +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/normalise.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/notifications.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/options.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/options_page.css +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/options_page.html +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/options_page.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/search.html +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/search.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/selenium_bridge.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/showvisited.css +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/showvisited.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/sidebar-outer.css +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/sidebar.css +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/sidebar.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/sources.ts +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/toastify.css +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/src/toastify.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tests/anchorme.test.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tests/common.test.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tests/defensify.test.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tests/integration.test.js +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tests/test.html +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/extension/tsconfig.json +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/scripts/backup-phone-history.sh +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/scripts/promnesia +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/misc/__init__.pyi +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/misc/config_example.py +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/py.typed +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/tests/__init__.py +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/tests/sources/__init__.py +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/src/promnesia/tests/test_extract_urls.py +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/install_and_run +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/orgs/file.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/orgs/file2.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/orgs/file3.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/orgs/file4.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/orgs/file5.org +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/auto/pocket.json +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/custom/file1.txt +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/custom/file2.txt +0 -0
- /promnesia-1.2.20240810/src/promnesia/sources/__init__.pyi → /promnesia-1.4.20250909/tests/testdata/hypexport/src/hypexport/py.typed +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/logseq-graph/logseq/config.edn +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/logseq-graph/pages/Note.md +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/normalise/ff.txt +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/obsidian-vault/.obsidian/app.json +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/obsidian-vault/Note.md +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/takeout/Takeout/My Activity/Chrome/MyActivity.html +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/takeout-20150518T000000Z.zip +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/traverse/ignoreme.txt +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/traverse/ignoreme2/notrealignored.txt +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/traverse/imhere.txt +0 -0
- {promnesia-1.2.20240810 → promnesia-1.4.20250909}/tests/testdata/traverse/imhere2/real.txt +0 -0
- {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
|