├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── icon.svg ├── index.html ├── package.json ├── pnpm-lock.yaml ├── screenshots ├── demo.gif ├── demo2.gif ├── demo3.gif ├── demo4.gif ├── demo5.gif ├── demo6.gif ├── toolbar-demo.gif └── toolbar.png ├── src ├── features │ ├── complete-task │ │ └── index.ts │ ├── go-to-date │ │ ├── GotoDate.tsx │ │ └── index.tsx │ ├── parse │ │ ├── index.ts │ │ ├── manual.ts │ │ ├── semi-auto.ts │ │ └── types.ts │ └── toolbar │ │ ├── handle-append-page-embeds.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ └── toolbar.css ├── global.d.ts ├── index.tsx ├── output.css ├── settings │ └── index.ts ├── tailwind.css └── utils │ └── index.ts ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [hkgnp] 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/icon.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/screenshots/demo.gif -------------------------------------------------------------------------------- /screenshots/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/screenshots/demo2.gif -------------------------------------------------------------------------------- /screenshots/demo3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/screenshots/demo3.gif -------------------------------------------------------------------------------- /screenshots/demo4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/screenshots/demo4.gif -------------------------------------------------------------------------------- /screenshots/demo5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/screenshots/demo5.gif -------------------------------------------------------------------------------- /screenshots/demo6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/screenshots/demo6.gif -------------------------------------------------------------------------------- /screenshots/toolbar-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/screenshots/toolbar-demo.gif -------------------------------------------------------------------------------- /screenshots/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/screenshots/toolbar.png -------------------------------------------------------------------------------- /src/features/complete-task/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/features/complete-task/index.ts -------------------------------------------------------------------------------- /src/features/go-to-date/GotoDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/features/go-to-date/GotoDate.tsx -------------------------------------------------------------------------------- /src/features/go-to-date/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/features/go-to-date/index.tsx -------------------------------------------------------------------------------- /src/features/parse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/features/parse/index.ts -------------------------------------------------------------------------------- /src/features/parse/manual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/features/parse/manual.ts -------------------------------------------------------------------------------- /src/features/parse/semi-auto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/features/parse/semi-auto.ts -------------------------------------------------------------------------------- /src/features/parse/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/features/parse/types.ts -------------------------------------------------------------------------------- /src/features/toolbar/handle-append-page-embeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/features/toolbar/handle-append-page-embeds.ts -------------------------------------------------------------------------------- /src/features/toolbar/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/features/toolbar/helpers.ts -------------------------------------------------------------------------------- /src/features/toolbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/features/toolbar/index.ts -------------------------------------------------------------------------------- /src/features/toolbar/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/features/toolbar/toolbar.css -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/output.css -------------------------------------------------------------------------------- /src/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/settings/index.ts -------------------------------------------------------------------------------- /src/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/tailwind.css -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/HEAD/vite.config.ts --------------------------------------------------------------------------------