├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── esbuild.config.mjs ├── manifest.json ├── package.json ├── pnpm-lock.yaml ├── src ├── main.ts ├── methods │ └── publishPost.ts ├── settingTab │ └── index.ts └── types │ └── index.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/README.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/methods/publishPost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/src/methods/publishPost.ts -------------------------------------------------------------------------------- /src/settingTab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/src/settingTab/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southpaw1496/obsidian-send-to-ghost/HEAD/versions.json --------------------------------------------------------------------------------