├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── icon.svg ├── index.html ├── package.json ├── pnpm-lock.yaml ├── screenshots ├── demo.gif └── dynamic-variables.gif ├── src ├── components │ ├── SortableItem.tsx │ ├── TagManagement.tsx │ └── TagProperties.tsx ├── constants.ts ├── features │ ├── create-tag │ │ └── index.tsx │ ├── index.css │ ├── index.tsx │ └── manage-tags │ │ └── index.tsx ├── global.d.ts ├── handle-popup.ts ├── index.tsx ├── observerCallback.ts ├── services │ ├── core │ │ ├── query-blocks-with-tag.ts │ │ ├── update-blocks.ts │ │ └── update-settings.ts │ ├── handle-dynamic-variables.ts │ ├── handle-power-tag.ts │ └── re-ordering │ │ ├── index.ts │ │ ├── insert-ordered-properties.ts │ │ ├── remove-all-properties.ts │ │ └── reorder-properties.ts └── settings.ts ├── tsconfig.json └── vite.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [hkgnp] 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/icon.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/screenshots/demo.gif -------------------------------------------------------------------------------- /screenshots/dynamic-variables.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/screenshots/dynamic-variables.gif -------------------------------------------------------------------------------- /src/components/SortableItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/components/SortableItem.tsx -------------------------------------------------------------------------------- /src/components/TagManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/components/TagManagement.tsx -------------------------------------------------------------------------------- /src/components/TagProperties.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/components/TagProperties.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/features/create-tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/features/create-tag/index.tsx -------------------------------------------------------------------------------- /src/features/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: none !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/features/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/features/index.tsx -------------------------------------------------------------------------------- /src/features/manage-tags/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/features/manage-tags/index.tsx -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/handle-popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/handle-popup.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/observerCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/observerCallback.ts -------------------------------------------------------------------------------- /src/services/core/query-blocks-with-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/services/core/query-blocks-with-tag.ts -------------------------------------------------------------------------------- /src/services/core/update-blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/services/core/update-blocks.ts -------------------------------------------------------------------------------- /src/services/core/update-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/services/core/update-settings.ts -------------------------------------------------------------------------------- /src/services/handle-dynamic-variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/services/handle-dynamic-variables.ts -------------------------------------------------------------------------------- /src/services/handle-power-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/services/handle-power-tag.ts -------------------------------------------------------------------------------- /src/services/re-ordering/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/services/re-ordering/index.ts -------------------------------------------------------------------------------- /src/services/re-ordering/insert-ordered-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/services/re-ordering/insert-ordered-properties.ts -------------------------------------------------------------------------------- /src/services/re-ordering/remove-all-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/services/re-ordering/remove-all-properties.ts -------------------------------------------------------------------------------- /src/services/re-ordering/reorder-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/services/re-ordering/reorder-properties.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/src/settings.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-powertags-plugin/HEAD/vite.config.ts --------------------------------------------------------------------------------