# @andystewartdesign/astro-marko

> ⚠️ **This package has been renamed to [`markastro`](https://www.npmjs.com/package/markastro).**
>
> Please migrate — this package will no longer receive updates.

## Migrating to `markastro`

```bash
npm uninstall @andystewartdesign/astro-marko
npm install markastro
```

Then update your `astro.config.mjs`:

```js
import { defineConfig } from "astro/config";
import marko from "markastro"; // was @andystewartdesign/astro-marko

export default defineConfig({
  integrations: [marko()],
});
```

Or use `astro add` to handle installation automatically:

```bash
npx astro add markastro
```

The API is identical — no other changes needed.
