├── .changeset ├── README.md └── config.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .vscode ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── biome.json ├── package.json ├── packages ├── astro-remote │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.ts │ ├── lib │ │ ├── Markdown.astro │ │ ├── Markup.astro │ │ ├── env.d.ts │ │ └── utils.ts │ ├── package.json │ └── tsconfig.json └── playground │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ └── launch.json │ ├── README.md │ ├── astro.config.mts │ ├── package.json │ ├── public │ └── favicon.svg │ ├── src │ ├── components │ │ ├── CodeBlock.astro │ │ ├── CodeSpan.astro │ │ ├── Heading.astro │ │ └── Note.astro │ ├── env.d.ts │ └── pages │ │ ├── index.astro │ │ ├── test-html.astro │ │ ├── test-issue27.astro │ │ ├── test-issue33.astro │ │ ├── test-issue7.astro │ │ ├── test-md-local.astro │ │ └── test-md-remote.astro │ └── tsconfig.json ├── pnpm-lock.yaml └── pnpm-workspace.yaml /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | prefer-workspace-packages=true 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ./packages/astro-remote/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/package.json -------------------------------------------------------------------------------- /packages/astro-remote/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/astro-remote/CHANGELOG.md -------------------------------------------------------------------------------- /packages/astro-remote/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/astro-remote/LICENSE -------------------------------------------------------------------------------- /packages/astro-remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/astro-remote/README.md -------------------------------------------------------------------------------- /packages/astro-remote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/astro-remote/index.ts -------------------------------------------------------------------------------- /packages/astro-remote/lib/Markdown.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/astro-remote/lib/Markdown.astro -------------------------------------------------------------------------------- /packages/astro-remote/lib/Markup.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/astro-remote/lib/Markup.astro -------------------------------------------------------------------------------- /packages/astro-remote/lib/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/astro-remote/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/astro-remote/lib/utils.ts -------------------------------------------------------------------------------- /packages/astro-remote/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/astro-remote/package.json -------------------------------------------------------------------------------- /packages/astro-remote/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/astro-remote/tsconfig.json -------------------------------------------------------------------------------- /packages/playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/.gitignore -------------------------------------------------------------------------------- /packages/playground/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/.vscode/extensions.json -------------------------------------------------------------------------------- /packages/playground/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/.vscode/launch.json -------------------------------------------------------------------------------- /packages/playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/README.md -------------------------------------------------------------------------------- /packages/playground/astro.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/astro.config.mts -------------------------------------------------------------------------------- /packages/playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/package.json -------------------------------------------------------------------------------- /packages/playground/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/public/favicon.svg -------------------------------------------------------------------------------- /packages/playground/src/components/CodeBlock.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/src/components/CodeBlock.astro -------------------------------------------------------------------------------- /packages/playground/src/components/CodeSpan.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/src/components/CodeSpan.astro -------------------------------------------------------------------------------- /packages/playground/src/components/Heading.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/src/components/Heading.astro -------------------------------------------------------------------------------- /packages/playground/src/components/Note.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/src/components/Note.astro -------------------------------------------------------------------------------- /packages/playground/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/playground/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/src/pages/index.astro -------------------------------------------------------------------------------- /packages/playground/src/pages/test-html.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/src/pages/test-html.astro -------------------------------------------------------------------------------- /packages/playground/src/pages/test-issue27.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/src/pages/test-issue27.astro -------------------------------------------------------------------------------- /packages/playground/src/pages/test-issue33.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/src/pages/test-issue33.astro -------------------------------------------------------------------------------- /packages/playground/src/pages/test-issue7.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/src/pages/test-issue7.astro -------------------------------------------------------------------------------- /packages/playground/src/pages/test-md-local.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/src/pages/test-md-local.astro -------------------------------------------------------------------------------- /packages/playground/src/pages/test-md-remote.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/packages/playground/src/pages/test-md-remote.astro -------------------------------------------------------------------------------- /packages/playground/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strict" 3 | } -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natemoo-re/astro-remote/HEAD/pnpm-workspace.yaml --------------------------------------------------------------------------------