├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── ammdi │ ├── README │ ├── ammdi.sh │ ├── check.sh │ ├── deploy.sh │ ├── extract.sh │ ├── full.sh │ ├── generate-private.sh │ ├── generate.sh │ ├── serve-private.sh │ ├── serve.sh │ └── upload-git.sh ├── generate.sh ├── local.sh ├── roam │ └── fetch.sh ├── roamaway-build.sh ├── serve.sh ├── setup-example.sh ├── simple_server.sh ├── update.script └── update.sh ├── project.clj ├── resources ├── config.edn ├── default-config.edn ├── example-config.edn ├── logback.xml ├── logseq-dev.edn ├── nbb-query.cljs ├── parser.ebnf ├── public │ ├── #roam-itself.css# │ ├── README │ ├── default.css │ ├── elasticlunr.min.js │ ├── external-link.svg │ ├── grid.js │ ├── hyper-roam.css │ ├── roam-itself.css │ └── search.js └── remarkbox.js ├── roamaway └── README.md ├── src └── goddinpotty │ ├── batadase.clj │ ├── config.clj │ ├── context.clj │ ├── convert │ ├── roam_logseq.clj │ └── roam_logseq_ui.clj │ ├── core.clj │ ├── curation.clj │ ├── database.clj │ ├── dotty.clj │ ├── endure.clj │ ├── export │ ├── gdf.clj │ ├── markdown.clj │ └── mastodon.clj │ ├── graph.clj │ ├── html_generation.clj │ ├── import │ ├── edit_times.clj │ ├── logseq.clj │ ├── logseq_from_md.clj │ ├── roam.clj │ └── roam_images.clj │ ├── index.clj │ ├── parser.clj │ ├── recent.clj │ ├── rendering.clj │ ├── search.clj │ ├── templating.clj │ ├── twin_pages.clj │ ├── utils.clj │ └── wayback.clj └── test ├── goddinpotty ├── batadase_test.clj ├── convert │ └── roam_logseq_test.clj ├── core_test.clj ├── database_test.clj ├── import │ └── logseq_test.clj ├── parser_test.clj ├── rendering_test.clj ├── templating_test.clj └── wayback_test.clj └── resources ├── graph1.json ├── logseq-test-config.edn ├── logseq-test ├── journals │ ├── 2022_05_12.md │ └── 2022_05_13.md ├── logseq │ ├── config.edn │ ├── custom.css │ ├── metadata.edn │ └── pages-metadata.edn └── pages │ ├── AboutBlock.md │ ├── Embedded Media.md │ ├── ExitTagTests.md │ ├── Front Page.md │ ├── PrivatePageTest.md │ ├── Sidenotes.md │ ├── Superman.md │ ├── basic tests.md │ ├── contents.md │ └── some actual content.md ├── rendering-test-config.edn └── roamaway.edn /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/README.md -------------------------------------------------------------------------------- /bin/ammdi/README: -------------------------------------------------------------------------------- 1 | AMMDI-specific scripts 2 | 3 | -------------------------------------------------------------------------------- /bin/ammdi/ammdi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/ammdi/ammdi.sh -------------------------------------------------------------------------------- /bin/ammdi/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/ammdi/check.sh -------------------------------------------------------------------------------- /bin/ammdi/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/ammdi/deploy.sh -------------------------------------------------------------------------------- /bin/ammdi/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/ammdi/extract.sh -------------------------------------------------------------------------------- /bin/ammdi/full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/ammdi/full.sh -------------------------------------------------------------------------------- /bin/ammdi/generate-private.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/ammdi/generate-private.sh -------------------------------------------------------------------------------- /bin/ammdi/generate.sh: -------------------------------------------------------------------------------- 1 | export GP_CONFIG="resources/ammdi-config.edn" 2 | bin/generate.sh 3 | -------------------------------------------------------------------------------- /bin/ammdi/serve-private.sh: -------------------------------------------------------------------------------- 1 | bin/serve.sh 3773 /opt/mt/working/ammdi-private 2 | -------------------------------------------------------------------------------- /bin/ammdi/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/ammdi/serve.sh -------------------------------------------------------------------------------- /bin/ammdi/upload-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/ammdi/upload-git.sh -------------------------------------------------------------------------------- /bin/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/generate.sh -------------------------------------------------------------------------------- /bin/local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/local.sh -------------------------------------------------------------------------------- /bin/roam/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/roam/fetch.sh -------------------------------------------------------------------------------- /bin/roamaway-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/roamaway-build.sh -------------------------------------------------------------------------------- /bin/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/serve.sh -------------------------------------------------------------------------------- /bin/setup-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/setup-example.sh -------------------------------------------------------------------------------- /bin/simple_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/simple_server.sh -------------------------------------------------------------------------------- /bin/update.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/update.script -------------------------------------------------------------------------------- /bin/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/bin/update.sh -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/project.clj -------------------------------------------------------------------------------- /resources/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/config.edn -------------------------------------------------------------------------------- /resources/default-config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/default-config.edn -------------------------------------------------------------------------------- /resources/example-config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/example-config.edn -------------------------------------------------------------------------------- /resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/logback.xml -------------------------------------------------------------------------------- /resources/logseq-dev.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/logseq-dev.edn -------------------------------------------------------------------------------- /resources/nbb-query.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/nbb-query.cljs -------------------------------------------------------------------------------- /resources/parser.ebnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/parser.ebnf -------------------------------------------------------------------------------- /resources/public/#roam-itself.css#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/public/#roam-itself.css# -------------------------------------------------------------------------------- /resources/public/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/public/README -------------------------------------------------------------------------------- /resources/public/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/public/default.css -------------------------------------------------------------------------------- /resources/public/elasticlunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/public/elasticlunr.min.js -------------------------------------------------------------------------------- /resources/public/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/public/external-link.svg -------------------------------------------------------------------------------- /resources/public/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/public/grid.js -------------------------------------------------------------------------------- /resources/public/hyper-roam.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/public/hyper-roam.css -------------------------------------------------------------------------------- /resources/public/roam-itself.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/public/roam-itself.css -------------------------------------------------------------------------------- /resources/public/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/public/search.js -------------------------------------------------------------------------------- /resources/remarkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/resources/remarkbox.js -------------------------------------------------------------------------------- /roamaway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/roamaway/README.md -------------------------------------------------------------------------------- /src/goddinpotty/batadase.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/batadase.clj -------------------------------------------------------------------------------- /src/goddinpotty/config.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/config.clj -------------------------------------------------------------------------------- /src/goddinpotty/context.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/context.clj -------------------------------------------------------------------------------- /src/goddinpotty/convert/roam_logseq.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/convert/roam_logseq.clj -------------------------------------------------------------------------------- /src/goddinpotty/convert/roam_logseq_ui.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/convert/roam_logseq_ui.clj -------------------------------------------------------------------------------- /src/goddinpotty/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/core.clj -------------------------------------------------------------------------------- /src/goddinpotty/curation.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/curation.clj -------------------------------------------------------------------------------- /src/goddinpotty/database.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/database.clj -------------------------------------------------------------------------------- /src/goddinpotty/dotty.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/dotty.clj -------------------------------------------------------------------------------- /src/goddinpotty/endure.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/endure.clj -------------------------------------------------------------------------------- /src/goddinpotty/export/gdf.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/export/gdf.clj -------------------------------------------------------------------------------- /src/goddinpotty/export/markdown.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/export/markdown.clj -------------------------------------------------------------------------------- /src/goddinpotty/export/mastodon.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/export/mastodon.clj -------------------------------------------------------------------------------- /src/goddinpotty/graph.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/graph.clj -------------------------------------------------------------------------------- /src/goddinpotty/html_generation.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/html_generation.clj -------------------------------------------------------------------------------- /src/goddinpotty/import/edit_times.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/import/edit_times.clj -------------------------------------------------------------------------------- /src/goddinpotty/import/logseq.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/import/logseq.clj -------------------------------------------------------------------------------- /src/goddinpotty/import/logseq_from_md.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/import/logseq_from_md.clj -------------------------------------------------------------------------------- /src/goddinpotty/import/roam.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/import/roam.clj -------------------------------------------------------------------------------- /src/goddinpotty/import/roam_images.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/import/roam_images.clj -------------------------------------------------------------------------------- /src/goddinpotty/index.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/index.clj -------------------------------------------------------------------------------- /src/goddinpotty/parser.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/parser.clj -------------------------------------------------------------------------------- /src/goddinpotty/recent.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/recent.clj -------------------------------------------------------------------------------- /src/goddinpotty/rendering.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/rendering.clj -------------------------------------------------------------------------------- /src/goddinpotty/search.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/search.clj -------------------------------------------------------------------------------- /src/goddinpotty/templating.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/templating.clj -------------------------------------------------------------------------------- /src/goddinpotty/twin_pages.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/twin_pages.clj -------------------------------------------------------------------------------- /src/goddinpotty/utils.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/utils.clj -------------------------------------------------------------------------------- /src/goddinpotty/wayback.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/src/goddinpotty/wayback.clj -------------------------------------------------------------------------------- /test/goddinpotty/batadase_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/goddinpotty/batadase_test.clj -------------------------------------------------------------------------------- /test/goddinpotty/convert/roam_logseq_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/goddinpotty/convert/roam_logseq_test.clj -------------------------------------------------------------------------------- /test/goddinpotty/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/goddinpotty/core_test.clj -------------------------------------------------------------------------------- /test/goddinpotty/database_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/goddinpotty/database_test.clj -------------------------------------------------------------------------------- /test/goddinpotty/import/logseq_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/goddinpotty/import/logseq_test.clj -------------------------------------------------------------------------------- /test/goddinpotty/parser_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/goddinpotty/parser_test.clj -------------------------------------------------------------------------------- /test/goddinpotty/rendering_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/goddinpotty/rendering_test.clj -------------------------------------------------------------------------------- /test/goddinpotty/templating_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/goddinpotty/templating_test.clj -------------------------------------------------------------------------------- /test/goddinpotty/wayback_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/goddinpotty/wayback_test.clj -------------------------------------------------------------------------------- /test/resources/graph1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/graph1.json -------------------------------------------------------------------------------- /test/resources/logseq-test-config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/logseq-test-config.edn -------------------------------------------------------------------------------- /test/resources/logseq-test/journals/2022_05_12.md: -------------------------------------------------------------------------------- 1 | - Here's some vanilla text. 2 | - [[basic tests]] 3 | - -------------------------------------------------------------------------------- /test/resources/logseq-test/journals/2022_05_13.md: -------------------------------------------------------------------------------- 1 | - [[Front Page]] -------------------------------------------------------------------------------- /test/resources/logseq-test/logseq/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/logseq-test/logseq/config.edn -------------------------------------------------------------------------------- /test/resources/logseq-test/logseq/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/resources/logseq-test/logseq/metadata.edn: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/resources/logseq-test/logseq/pages-metadata.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/logseq-test/logseq/pages-metadata.edn -------------------------------------------------------------------------------- /test/resources/logseq-test/pages/AboutBlock.md: -------------------------------------------------------------------------------- 1 | - What it's about -------------------------------------------------------------------------------- /test/resources/logseq-test/pages/Embedded Media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/logseq-test/pages/Embedded Media.md -------------------------------------------------------------------------------- /test/resources/logseq-test/pages/ExitTagTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/logseq-test/pages/ExitTagTests.md -------------------------------------------------------------------------------- /test/resources/logseq-test/pages/Front Page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/logseq-test/pages/Front Page.md -------------------------------------------------------------------------------- /test/resources/logseq-test/pages/PrivatePageTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/logseq-test/pages/PrivatePageTest.md -------------------------------------------------------------------------------- /test/resources/logseq-test/pages/Sidenotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/logseq-test/pages/Sidenotes.md -------------------------------------------------------------------------------- /test/resources/logseq-test/pages/Superman.md: -------------------------------------------------------------------------------- 1 | alias:: Clark Kent 2 | 3 | - The Man of Steel 4 | -------------------------------------------------------------------------------- /test/resources/logseq-test/pages/basic tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/logseq-test/pages/basic tests.md -------------------------------------------------------------------------------- /test/resources/logseq-test/pages/contents.md: -------------------------------------------------------------------------------- 1 | - 2 | -------------------------------------------------------------------------------- /test/resources/logseq-test/pages/some actual content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/logseq-test/pages/some actual content.md -------------------------------------------------------------------------------- /test/resources/rendering-test-config.edn: -------------------------------------------------------------------------------- 1 | #merge 2 | [#include "default-config.edn" 3 | 4 | {:link-new-tabs nil 5 | }] 6 | -------------------------------------------------------------------------------- /test/resources/roamaway.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtravers/goddinpotty/HEAD/test/resources/roamaway.edn --------------------------------------------------------------------------------