├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── AutoBuildByTag.yml ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── LICENSE ├── README.md ├── README_zh.md ├── esbuild.config.mjs ├── manifest.json ├── package.json ├── screenshot ├── Obsidian_Dark_Theme.jpg ├── Obsidian_Light_Theme.jpg ├── Plugin_Settings.jpg └── Preview_Mode.gif ├── src ├── constant.ts ├── core-processor.ts ├── i18n │ ├── index.ts │ └── locale │ │ ├── en.json │ │ └── zh_cn.json ├── main.ts ├── store.ts ├── styles │ └── index.scss ├── types.d.ts ├── ui │ ├── CbeHeader.svelte │ ├── CbeLineNumber.svelte │ └── ColorPicker.ts └── util.ts ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | dist 4 | 5 | esbuild.config.mjs 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/AutoBuildByTag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/.github/workflows/AutoBuildByTag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/README_zh.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/package.json -------------------------------------------------------------------------------- /screenshot/Obsidian_Dark_Theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/screenshot/Obsidian_Dark_Theme.jpg -------------------------------------------------------------------------------- /screenshot/Obsidian_Light_Theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/screenshot/Obsidian_Light_Theme.jpg -------------------------------------------------------------------------------- /screenshot/Plugin_Settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/screenshot/Plugin_Settings.jpg -------------------------------------------------------------------------------- /screenshot/Preview_Mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/screenshot/Preview_Mode.gif -------------------------------------------------------------------------------- /src/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/constant.ts -------------------------------------------------------------------------------- /src/core-processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/core-processor.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/i18n/locale/en.json -------------------------------------------------------------------------------- /src/i18n/locale/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/i18n/locale/zh_cn.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/store.ts -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/ui/CbeHeader.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/ui/CbeHeader.svelte -------------------------------------------------------------------------------- /src/ui/CbeLineNumber.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/ui/CbeLineNumber.svelte -------------------------------------------------------------------------------- /src/ui/ColorPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/ui/ColorPicker.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/src/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyable/obsidian-code-block-enhancer/HEAD/versions.json --------------------------------------------------------------------------------