├── .gitignore ├── LICENSE ├── README.md ├── constants.ts ├── main.ts ├── manifest.json ├── package.json ├── rollup.config.js ├── settings.ts ├── styles.css ├── tsconfig.json └── versions.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/obsidian-link-archive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/obsidian-link-archive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/obsidian-link-archive/HEAD/README.md -------------------------------------------------------------------------------- /constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/obsidian-link-archive/HEAD/constants.ts -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/obsidian-link-archive/HEAD/main.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/obsidian-link-archive/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/obsidian-link-archive/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/obsidian-link-archive/HEAD/rollup.config.js -------------------------------------------------------------------------------- /settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/obsidian-link-archive/HEAD/settings.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | /* nothing to see here for now */ -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/obsidian-link-archive/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "0.1.0": "0.9.12" 3 | } 4 | --------------------------------------------------------------------------------