├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_zh_CN.md ├── TODO.md ├── asset └── action.png ├── icon.png ├── index.css ├── package.json ├── plugin.json ├── preview.png ├── public └── i18n │ ├── README.md │ ├── en_US.json │ └── zh_CN.json ├── release.sh ├── scripts ├── .gitignore ├── elevate.ps1 ├── make_dev_copy.js ├── make_dev_link.js ├── make_install.js ├── update_version.js └── utils.js ├── src ├── api.ts ├── components │ ├── FootnoteDock.svelte │ └── LoadingDialog.svelte ├── defaultSettings.ts ├── index.scss ├── index.ts ├── index_template.ts ├── libs │ ├── b3-typography.svelte │ ├── components │ │ ├── Form │ │ │ ├── form-input.svelte │ │ │ ├── form-wrap.svelte │ │ │ └── index.ts │ │ ├── b3-typography.svelte │ │ └── setting-panel.svelte │ ├── const.ts │ ├── dialog.ts │ ├── index.d.ts │ ├── promise-pool.ts │ ├── setting-item.svelte │ ├── setting-panel.svelte │ └── setting-utils.ts ├── setting-example.svelte ├── types │ ├── api.d.ts │ └── index.d.ts └── utils │ └── i18n.ts ├── svelte.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yaml-plugin.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/README.md -------------------------------------------------------------------------------- /README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/README_zh_CN.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/TODO.md -------------------------------------------------------------------------------- /asset/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/asset/action.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/icon.png -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/package.json -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/plugin.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/preview.png -------------------------------------------------------------------------------- /public/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/public/i18n/README.md -------------------------------------------------------------------------------- /public/i18n/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/public/i18n/en_US.json -------------------------------------------------------------------------------- /public/i18n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/public/i18n/zh_CN.json -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/release.sh -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | build 3 | dist 4 | *.exe 5 | *.spec 6 | -------------------------------------------------------------------------------- /scripts/elevate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/scripts/elevate.ps1 -------------------------------------------------------------------------------- /scripts/make_dev_copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/scripts/make_dev_copy.js -------------------------------------------------------------------------------- /scripts/make_dev_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/scripts/make_dev_link.js -------------------------------------------------------------------------------- /scripts/make_install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/scripts/make_install.js -------------------------------------------------------------------------------- /scripts/update_version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/scripts/update_version.js -------------------------------------------------------------------------------- /scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/scripts/utils.js -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/components/FootnoteDock.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/components/FootnoteDock.svelte -------------------------------------------------------------------------------- /src/components/LoadingDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/components/LoadingDialog.svelte -------------------------------------------------------------------------------- /src/defaultSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/defaultSettings.ts -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/index_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/index_template.ts -------------------------------------------------------------------------------- /src/libs/b3-typography.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/b3-typography.svelte -------------------------------------------------------------------------------- /src/libs/components/Form/form-input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/components/Form/form-input.svelte -------------------------------------------------------------------------------- /src/libs/components/Form/form-wrap.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/components/Form/form-wrap.svelte -------------------------------------------------------------------------------- /src/libs/components/Form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/components/Form/index.ts -------------------------------------------------------------------------------- /src/libs/components/b3-typography.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/components/b3-typography.svelte -------------------------------------------------------------------------------- /src/libs/components/setting-panel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/components/setting-panel.svelte -------------------------------------------------------------------------------- /src/libs/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/const.ts -------------------------------------------------------------------------------- /src/libs/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/dialog.ts -------------------------------------------------------------------------------- /src/libs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/index.d.ts -------------------------------------------------------------------------------- /src/libs/promise-pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/promise-pool.ts -------------------------------------------------------------------------------- /src/libs/setting-item.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/setting-item.svelte -------------------------------------------------------------------------------- /src/libs/setting-panel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/setting-panel.svelte -------------------------------------------------------------------------------- /src/libs/setting-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/libs/setting-utils.ts -------------------------------------------------------------------------------- /src/setting-example.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/setting-example.svelte -------------------------------------------------------------------------------- /src/types/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/types/api.d.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/src/utils/i18n.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yaml-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achuan-2/siyuan-plugin-blockref-footnote/HEAD/yaml-plugin.js --------------------------------------------------------------------------------