├── .envrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── config.yml └── workflows │ └── ci.yaml ├── .gitignore ├── .hlint.yaml ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── cabal.project ├── default.nix ├── docs ├── 404.html ├── _redirects ├── architecture.md ├── examples.md ├── filters │ └── list-table.lua ├── guide.md ├── guide │ ├── daily-notes.md │ ├── export.md │ ├── feed.md │ ├── folder-note.md │ ├── folgezettel.md │ ├── html-template.md │ ├── html-template │ │ ├── breadcrumbs.md │ │ ├── dark-mode.md │ │ ├── external-links.md │ │ ├── fonts.md │ │ ├── neuron-layout.md │ │ ├── ogp.md │ │ ├── search.md │ │ ├── sidebar.md │ │ ├── toc.md │ │ └── uptree.md │ ├── layer.md │ ├── lua-filters.md │ ├── markdown.md │ ├── markdown │ │ ├── Sample.txt │ │ ├── c-code.c │ │ ├── callout.md │ │ ├── cat.ogg │ │ ├── custom-style.md │ │ ├── death-note.mp4 │ │ ├── disaster-girl.jpg │ │ ├── embed.md │ │ ├── external-link-icon.svg │ │ ├── file-links.md │ │ ├── git-cheat-sheet-education.pdf │ │ ├── haskell-code.hs │ │ ├── hello-badge.svg │ │ └── pIqaD.svg │ ├── orgmode.org │ ├── orgmode.yaml │ ├── query.md │ └── yaml-config.md ├── index.md ├── index.yaml ├── start.md ├── start │ ├── install.md │ ├── install │ │ ├── nix.md │ │ ├── nix │ │ │ └── flake-module.md │ │ └── wsl.md │ ├── known-issues.md │ ├── neuron.md │ ├── resources.md │ └── resources │ │ ├── editors.md │ │ ├── editors │ │ ├── nota.md │ │ ├── obsmd.md │ │ ├── vim.md │ │ └── vscode.md │ │ ├── emanote-template.md │ │ └── zk.md ├── templates │ └── hooks │ │ └── after-note.tpl ├── tips.md └── tips │ ├── adding-images.md │ ├── js.md │ ├── js │ ├── math.md │ ├── mermaid.md │ └── syntax-highlighting.md │ └── sync.md ├── emanote ├── CHANGELOG.md ├── LICENSE ├── README.md ├── default │ ├── LICENSE │ ├── README │ ├── _emanote-live-server │ │ └── tailwind │ │ │ ├── README.txt │ │ │ ├── tailwind.cdn.js │ │ │ └── update.sh │ ├── _emanote-static │ │ ├── emanote-logo.svg │ │ ├── inverted-tree.css │ │ └── stork │ │ │ ├── README.txt │ │ │ ├── edible-dark.css │ │ │ ├── edible.css │ │ │ ├── stork.js │ │ │ ├── stork.js.map │ │ │ └── stork.wasm │ ├── favicon.svg │ ├── index.yaml │ └── templates │ │ ├── README │ │ ├── base.tpl │ │ ├── components │ │ ├── backlinks.tpl │ │ ├── body.tpl │ │ ├── breadcrumbs.tpl │ │ ├── checkbox-checked.tpl │ │ ├── checkbox-unchecked.tpl │ │ ├── context.tpl │ │ ├── footer.tpl │ │ ├── metadata.tpl │ │ ├── note-body.tpl │ │ ├── note-title.tpl │ │ ├── note-uptree-recurse.tpl │ │ ├── note-uptree.tpl │ │ ├── pandoc.tpl │ │ ├── sidebar-tree.tpl │ │ ├── sidebar.tpl │ │ ├── stork │ │ │ ├── stork-icon.tpl │ │ │ ├── stork-search-head.tpl │ │ │ └── stork-search.tpl │ │ ├── timeline.tpl │ │ └── toc.tpl │ │ ├── error.tpl │ │ ├── experimental.tpl │ │ ├── filters │ │ ├── callout │ │ │ ├── _base.tpl │ │ │ ├── failure.tpl │ │ │ ├── info.tpl │ │ │ ├── note.tpl │ │ │ ├── quote.tpl │ │ │ ├── tip.tpl │ │ │ └── warning.tpl │ │ ├── embed-audio.tpl │ │ ├── embed-code.tpl │ │ ├── embed-image.tpl │ │ ├── embed-note.tpl │ │ ├── embed-pdf.tpl │ │ ├── embed-video.tpl │ │ ├── query-default.tpl │ │ └── query-timeline.tpl │ │ ├── hooks │ │ ├── after-note.tpl │ │ ├── before-note.tpl │ │ ├── more-head.tpl │ │ └── note-end.tpl │ │ ├── layouts │ │ └── default.tpl │ │ ├── special │ │ ├── base.tpl │ │ ├── index.tpl │ │ ├── tagindex.tpl │ │ └── tasks.tpl │ │ └── styles.tpl ├── emanote.cabal ├── exe │ └── Main.hs ├── src │ ├── Emanote.hs │ └── Emanote │ │ ├── CLI.hs │ │ ├── Model.hs │ │ ├── Model │ │ ├── Calendar.hs │ │ ├── Calendar │ │ │ └── Parser.hs │ │ ├── Graph.hs │ │ ├── Link │ │ │ ├── Rel.hs │ │ │ └── Resolve.hs │ │ ├── Meta.hs │ │ ├── Note.hs │ │ ├── Note │ │ │ └── Filter.hs │ │ ├── Query.hs │ │ ├── SData.hs │ │ ├── StaticFile.hs │ │ ├── Stork.hs │ │ ├── Stork │ │ │ └── Index.hs │ │ ├── Task.hs │ │ ├── Title.hs │ │ ├── Toc.hs │ │ └── Type.hs │ │ ├── Pandoc │ │ ├── BuiltinFilters.hs │ │ ├── ExternalLink.hs │ │ ├── Link.hs │ │ ├── Markdown │ │ │ ├── Parser.hs │ │ │ └── Syntax │ │ │ │ ├── HashTag.hs │ │ │ │ └── Highlight.hs │ │ ├── Renderer.hs │ │ └── Renderer │ │ │ ├── Callout.hs │ │ │ ├── Embed.hs │ │ │ ├── Query.hs │ │ │ └── Url.hs │ │ ├── Prelude.hs │ │ ├── Route.hs │ │ ├── Route │ │ ├── Ext.hs │ │ ├── ModelRoute.hs │ │ ├── R.hs │ │ ├── SiteRoute.hs │ │ └── SiteRoute │ │ │ ├── Class.hs │ │ │ └── Type.hs │ │ ├── Source │ │ ├── Dynamic.hs │ │ ├── Loc.hs │ │ ├── Patch.hs │ │ └── Pattern.hs │ │ ├── View.hs │ │ └── View │ │ ├── Common.hs │ │ ├── Export.hs │ │ ├── Export │ │ ├── Content.hs │ │ └── JSON.hs │ │ ├── Feed.hs │ │ ├── LiveServerFiles.hs │ │ ├── TagIndex.hs │ │ ├── TaskIndex.hs │ │ └── Template.hs └── test │ ├── Emanote │ ├── Model │ │ ├── Link │ │ │ └── RelSpec.hs │ │ ├── QuerySpec.hs │ │ └── TocSpec.hs │ ├── Pandoc │ │ ├── ExternalLinkSpec.hs │ │ └── Renderer │ │ │ └── CalloutSpec.hs │ └── Route │ │ └── RSpec.hs │ └── Spec.hs ├── flake.lock ├── flake.nix ├── hie.yaml ├── justfile ├── nix └── modules │ ├── flake-parts │ ├── devshell.nix │ ├── extra │ │ ├── default.nix │ │ └── small-closure.nix │ ├── flake-module │ │ ├── README.md │ │ ├── default.nix │ │ └── site │ │ │ ├── default.nix │ │ │ ├── layer.nix │ │ │ └── outputs.nix │ ├── haskell.nix │ ├── nixpkgs.nix │ ├── pre-commit.nix │ ├── toplevel.nix │ └── website.nix │ └── home │ └── emanote.nix └── vira.hs /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/.envrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/.gitignore -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/.hlint.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | emanote/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | emanote/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | emanote/README.md -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- 1 | packages: 2 | ./emanote 3 | -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/default.nix -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/_redirects -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/filters/list-table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/filters/list-table.lua -------------------------------------------------------------------------------- /docs/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide.md -------------------------------------------------------------------------------- /docs/guide/daily-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/daily-notes.md -------------------------------------------------------------------------------- /docs/guide/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/export.md -------------------------------------------------------------------------------- /docs/guide/feed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/feed.md -------------------------------------------------------------------------------- /docs/guide/folder-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/folder-note.md -------------------------------------------------------------------------------- /docs/guide/folgezettel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/folgezettel.md -------------------------------------------------------------------------------- /docs/guide/html-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/html-template.md -------------------------------------------------------------------------------- /docs/guide/html-template/breadcrumbs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/html-template/breadcrumbs.md -------------------------------------------------------------------------------- /docs/guide/html-template/dark-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/html-template/dark-mode.md -------------------------------------------------------------------------------- /docs/guide/html-template/external-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/html-template/external-links.md -------------------------------------------------------------------------------- /docs/guide/html-template/fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/html-template/fonts.md -------------------------------------------------------------------------------- /docs/guide/html-template/neuron-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/html-template/neuron-layout.md -------------------------------------------------------------------------------- /docs/guide/html-template/ogp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/html-template/ogp.md -------------------------------------------------------------------------------- /docs/guide/html-template/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/html-template/search.md -------------------------------------------------------------------------------- /docs/guide/html-template/sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/html-template/sidebar.md -------------------------------------------------------------------------------- /docs/guide/html-template/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/html-template/toc.md -------------------------------------------------------------------------------- /docs/guide/html-template/uptree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/html-template/uptree.md -------------------------------------------------------------------------------- /docs/guide/layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/layer.md -------------------------------------------------------------------------------- /docs/guide/lua-filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/lua-filters.md -------------------------------------------------------------------------------- /docs/guide/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown.md -------------------------------------------------------------------------------- /docs/guide/markdown/Sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/Sample.txt -------------------------------------------------------------------------------- /docs/guide/markdown/c-code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/c-code.c -------------------------------------------------------------------------------- /docs/guide/markdown/callout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/callout.md -------------------------------------------------------------------------------- /docs/guide/markdown/cat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/cat.ogg -------------------------------------------------------------------------------- /docs/guide/markdown/custom-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/custom-style.md -------------------------------------------------------------------------------- /docs/guide/markdown/death-note.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/death-note.mp4 -------------------------------------------------------------------------------- /docs/guide/markdown/disaster-girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/disaster-girl.jpg -------------------------------------------------------------------------------- /docs/guide/markdown/embed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/embed.md -------------------------------------------------------------------------------- /docs/guide/markdown/external-link-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/external-link-icon.svg -------------------------------------------------------------------------------- /docs/guide/markdown/file-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/file-links.md -------------------------------------------------------------------------------- /docs/guide/markdown/git-cheat-sheet-education.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/git-cheat-sheet-education.pdf -------------------------------------------------------------------------------- /docs/guide/markdown/haskell-code.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/haskell-code.hs -------------------------------------------------------------------------------- /docs/guide/markdown/hello-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/hello-badge.svg -------------------------------------------------------------------------------- /docs/guide/markdown/pIqaD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/markdown/pIqaD.svg -------------------------------------------------------------------------------- /docs/guide/orgmode.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/orgmode.org -------------------------------------------------------------------------------- /docs/guide/orgmode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/orgmode.yaml -------------------------------------------------------------------------------- /docs/guide/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/query.md -------------------------------------------------------------------------------- /docs/guide/yaml-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/guide/yaml-config.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/index.yaml -------------------------------------------------------------------------------- /docs/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start.md -------------------------------------------------------------------------------- /docs/start/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/install.md -------------------------------------------------------------------------------- /docs/start/install/nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/install/nix.md -------------------------------------------------------------------------------- /docs/start/install/nix/flake-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/install/nix/flake-module.md -------------------------------------------------------------------------------- /docs/start/install/wsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/install/wsl.md -------------------------------------------------------------------------------- /docs/start/known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/known-issues.md -------------------------------------------------------------------------------- /docs/start/neuron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/neuron.md -------------------------------------------------------------------------------- /docs/start/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/resources.md -------------------------------------------------------------------------------- /docs/start/resources/editors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/resources/editors.md -------------------------------------------------------------------------------- /docs/start/resources/editors/nota.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/resources/editors/nota.md -------------------------------------------------------------------------------- /docs/start/resources/editors/obsmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/resources/editors/obsmd.md -------------------------------------------------------------------------------- /docs/start/resources/editors/vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/resources/editors/vim.md -------------------------------------------------------------------------------- /docs/start/resources/editors/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/resources/editors/vscode.md -------------------------------------------------------------------------------- /docs/start/resources/emanote-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/resources/emanote-template.md -------------------------------------------------------------------------------- /docs/start/resources/zk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/start/resources/zk.md -------------------------------------------------------------------------------- /docs/templates/hooks/after-note.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/templates/hooks/after-note.tpl -------------------------------------------------------------------------------- /docs/tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/tips.md -------------------------------------------------------------------------------- /docs/tips/adding-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/tips/adding-images.md -------------------------------------------------------------------------------- /docs/tips/js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/tips/js.md -------------------------------------------------------------------------------- /docs/tips/js/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/tips/js/math.md -------------------------------------------------------------------------------- /docs/tips/js/mermaid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/tips/js/mermaid.md -------------------------------------------------------------------------------- /docs/tips/js/syntax-highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/tips/js/syntax-highlighting.md -------------------------------------------------------------------------------- /docs/tips/sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/docs/tips/sync.md -------------------------------------------------------------------------------- /emanote/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/CHANGELOG.md -------------------------------------------------------------------------------- /emanote/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/LICENSE -------------------------------------------------------------------------------- /emanote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/README.md -------------------------------------------------------------------------------- /emanote/default/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/LICENSE -------------------------------------------------------------------------------- /emanote/default/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/README -------------------------------------------------------------------------------- /emanote/default/_emanote-live-server/tailwind/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/_emanote-live-server/tailwind/README.txt -------------------------------------------------------------------------------- /emanote/default/_emanote-live-server/tailwind/tailwind.cdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/_emanote-live-server/tailwind/tailwind.cdn.js -------------------------------------------------------------------------------- /emanote/default/_emanote-live-server/tailwind/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/_emanote-live-server/tailwind/update.sh -------------------------------------------------------------------------------- /emanote/default/_emanote-static/emanote-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/_emanote-static/emanote-logo.svg -------------------------------------------------------------------------------- /emanote/default/_emanote-static/inverted-tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/_emanote-static/inverted-tree.css -------------------------------------------------------------------------------- /emanote/default/_emanote-static/stork/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/_emanote-static/stork/README.txt -------------------------------------------------------------------------------- /emanote/default/_emanote-static/stork/edible-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/_emanote-static/stork/edible-dark.css -------------------------------------------------------------------------------- /emanote/default/_emanote-static/stork/edible.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/_emanote-static/stork/edible.css -------------------------------------------------------------------------------- /emanote/default/_emanote-static/stork/stork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/_emanote-static/stork/stork.js -------------------------------------------------------------------------------- /emanote/default/_emanote-static/stork/stork.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/_emanote-static/stork/stork.js.map -------------------------------------------------------------------------------- /emanote/default/_emanote-static/stork/stork.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/_emanote-static/stork/stork.wasm -------------------------------------------------------------------------------- /emanote/default/favicon.svg: -------------------------------------------------------------------------------- 1 | _emanote-static/emanote-logo.svg -------------------------------------------------------------------------------- /emanote/default/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/index.yaml -------------------------------------------------------------------------------- /emanote/default/templates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/README -------------------------------------------------------------------------------- /emanote/default/templates/base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/base.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/backlinks.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/backlinks.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/body.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/body.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/breadcrumbs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/breadcrumbs.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/checkbox-checked.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/checkbox-checked.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/checkbox-unchecked.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/checkbox-unchecked.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/context.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/context.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/footer.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/metadata.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/metadata.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/note-body.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/note-body.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/note-title.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/note-title.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/note-uptree-recurse.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/note-uptree-recurse.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/note-uptree.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/note-uptree.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/pandoc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/pandoc.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/sidebar-tree.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/sidebar-tree.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/sidebar.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/sidebar.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/stork/stork-icon.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/stork/stork-icon.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/stork/stork-search-head.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/stork/stork-search-head.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/stork/stork-search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/stork/stork-search.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/timeline.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/timeline.tpl -------------------------------------------------------------------------------- /emanote/default/templates/components/toc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/components/toc.tpl -------------------------------------------------------------------------------- /emanote/default/templates/error.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/error.tpl -------------------------------------------------------------------------------- /emanote/default/templates/experimental.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/experimental.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/callout/_base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/callout/_base.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/callout/failure.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/callout/failure.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/callout/info.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/callout/info.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/callout/note.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/callout/note.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/callout/quote.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/callout/quote.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/callout/tip.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/callout/tip.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/callout/warning.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/callout/warning.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/embed-audio.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/embed-audio.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/embed-code.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/embed-code.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/embed-image.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/embed-image.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/embed-note.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/embed-note.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/embed-pdf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/embed-pdf.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/embed-video.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/embed-video.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/query-default.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/query-default.tpl -------------------------------------------------------------------------------- /emanote/default/templates/filters/query-timeline.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/filters/query-timeline.tpl -------------------------------------------------------------------------------- /emanote/default/templates/hooks/after-note.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emanote/default/templates/hooks/before-note.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emanote/default/templates/hooks/more-head.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/hooks/more-head.tpl -------------------------------------------------------------------------------- /emanote/default/templates/hooks/note-end.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/hooks/note-end.tpl -------------------------------------------------------------------------------- /emanote/default/templates/layouts/default.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/layouts/default.tpl -------------------------------------------------------------------------------- /emanote/default/templates/special/base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/special/base.tpl -------------------------------------------------------------------------------- /emanote/default/templates/special/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/special/index.tpl -------------------------------------------------------------------------------- /emanote/default/templates/special/tagindex.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/special/tagindex.tpl -------------------------------------------------------------------------------- /emanote/default/templates/special/tasks.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/special/tasks.tpl -------------------------------------------------------------------------------- /emanote/default/templates/styles.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/default/templates/styles.tpl -------------------------------------------------------------------------------- /emanote/emanote.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/emanote.cabal -------------------------------------------------------------------------------- /emanote/exe/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/exe/Main.hs -------------------------------------------------------------------------------- /emanote/src/Emanote.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/CLI.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/CLI.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Calendar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Calendar.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Calendar/Parser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Calendar/Parser.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Graph.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Graph.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Link/Rel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Link/Rel.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Link/Resolve.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Link/Resolve.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Meta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Meta.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Note.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Note.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Note/Filter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Note/Filter.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Query.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Query.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/SData.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/SData.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/StaticFile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/StaticFile.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Stork.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Stork.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Stork/Index.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Stork/Index.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Task.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Task.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Title.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Title.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Toc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Toc.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Model/Type.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Model/Type.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Pandoc/BuiltinFilters.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Pandoc/BuiltinFilters.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Pandoc/ExternalLink.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Pandoc/ExternalLink.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Pandoc/Link.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Pandoc/Link.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Pandoc/Markdown/Parser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Pandoc/Markdown/Parser.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Pandoc/Markdown/Syntax/HashTag.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Pandoc/Markdown/Syntax/HashTag.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Pandoc/Markdown/Syntax/Highlight.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Pandoc/Markdown/Syntax/Highlight.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Pandoc/Renderer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Pandoc/Renderer.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Pandoc/Renderer/Callout.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Pandoc/Renderer/Callout.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Pandoc/Renderer/Embed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Pandoc/Renderer/Embed.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Pandoc/Renderer/Query.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Pandoc/Renderer/Query.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Pandoc/Renderer/Url.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Pandoc/Renderer/Url.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Prelude.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Prelude.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Route.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Route.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Route/Ext.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Route/Ext.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Route/ModelRoute.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Route/ModelRoute.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Route/R.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Route/R.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Route/SiteRoute.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Route/SiteRoute.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Route/SiteRoute/Class.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Route/SiteRoute/Class.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Route/SiteRoute/Type.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Route/SiteRoute/Type.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Source/Dynamic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Source/Dynamic.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Source/Loc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Source/Loc.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Source/Patch.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Source/Patch.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/Source/Pattern.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/Source/Pattern.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/View.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/View.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/View/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/View/Common.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/View/Export.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/View/Export.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/View/Export/Content.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/View/Export/Content.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/View/Export/JSON.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/View/Export/JSON.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/View/Feed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/View/Feed.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/View/LiveServerFiles.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/View/LiveServerFiles.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/View/TagIndex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/View/TagIndex.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/View/TaskIndex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/View/TaskIndex.hs -------------------------------------------------------------------------------- /emanote/src/Emanote/View/Template.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/src/Emanote/View/Template.hs -------------------------------------------------------------------------------- /emanote/test/Emanote/Model/Link/RelSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/test/Emanote/Model/Link/RelSpec.hs -------------------------------------------------------------------------------- /emanote/test/Emanote/Model/QuerySpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/test/Emanote/Model/QuerySpec.hs -------------------------------------------------------------------------------- /emanote/test/Emanote/Model/TocSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/test/Emanote/Model/TocSpec.hs -------------------------------------------------------------------------------- /emanote/test/Emanote/Pandoc/ExternalLinkSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/test/Emanote/Pandoc/ExternalLinkSpec.hs -------------------------------------------------------------------------------- /emanote/test/Emanote/Pandoc/Renderer/CalloutSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/test/Emanote/Pandoc/Renderer/CalloutSpec.hs -------------------------------------------------------------------------------- /emanote/test/Emanote/Route/RSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/emanote/test/Emanote/Route/RSpec.hs -------------------------------------------------------------------------------- /emanote/test/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} 2 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/flake.nix -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- 1 | cradle: 2 | cabal: 3 | -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/justfile -------------------------------------------------------------------------------- /nix/modules/flake-parts/devshell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/devshell.nix -------------------------------------------------------------------------------- /nix/modules/flake-parts/extra/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/extra/default.nix -------------------------------------------------------------------------------- /nix/modules/flake-parts/extra/small-closure.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/extra/small-closure.nix -------------------------------------------------------------------------------- /nix/modules/flake-parts/flake-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/flake-module/README.md -------------------------------------------------------------------------------- /nix/modules/flake-parts/flake-module/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/flake-module/default.nix -------------------------------------------------------------------------------- /nix/modules/flake-parts/flake-module/site/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/flake-module/site/default.nix -------------------------------------------------------------------------------- /nix/modules/flake-parts/flake-module/site/layer.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/flake-module/site/layer.nix -------------------------------------------------------------------------------- /nix/modules/flake-parts/flake-module/site/outputs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/flake-module/site/outputs.nix -------------------------------------------------------------------------------- /nix/modules/flake-parts/haskell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/haskell.nix -------------------------------------------------------------------------------- /nix/modules/flake-parts/nixpkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/nixpkgs.nix -------------------------------------------------------------------------------- /nix/modules/flake-parts/pre-commit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/pre-commit.nix -------------------------------------------------------------------------------- /nix/modules/flake-parts/toplevel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/toplevel.nix -------------------------------------------------------------------------------- /nix/modules/flake-parts/website.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/flake-parts/website.nix -------------------------------------------------------------------------------- /nix/modules/home/emanote.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/nix/modules/home/emanote.nix -------------------------------------------------------------------------------- /vira.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srid/emanote/HEAD/vira.hs --------------------------------------------------------------------------------