Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/angry-spies-worry.md

This file was deleted.

24 changes: 0 additions & 24 deletions .changeset/chilly-dolphins-clap.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/great-eels-carry.md

This file was deleted.

26 changes: 0 additions & 26 deletions .changeset/late-onions-sparkle.md

This file was deleted.

138 changes: 0 additions & 138 deletions .changeset/old-toes-flow.md

This file was deleted.

24 changes: 0 additions & 24 deletions .changeset/quick-items-dream.md

This file was deleted.

43 changes: 0 additions & 43 deletions .changeset/shaggy-games-retire.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-adults-wash.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/basics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/starlight": "^0.33.2",
"@astrojs/starlight": "^0.34.0",
"astro": "^5.6.1",
"sharp": "^0.32.5"
}
Expand Down
4 changes: 2 additions & 2 deletions examples/markdoc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
},
"dependencies": {
"@astrojs/markdoc": "^0.13.3",
"@astrojs/starlight": "^0.33.2",
"@astrojs/starlight-markdoc": "^0.3.1",
"@astrojs/starlight": "^0.34.0",
"@astrojs/starlight-markdoc": "^0.4.0",
"astro": "^5.6.1",
"sharp": "^0.32.5"
}
Expand Down
4 changes: 2 additions & 2 deletions examples/tailwind/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/starlight": "^0.33.2",
"@astrojs/starlight-tailwind": "^3.0.1",
"@astrojs/starlight": "^0.34.0",
"@astrojs/starlight-tailwind": "^4.0.0",
"@tailwindcss/vite": "^4.0.7",
"astro": "^5.6.1",
"sharp": "^0.32.5",
Expand Down
25 changes: 25 additions & 0 deletions packages/markdoc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @astrojs/starlight-markdoc

## 0.4.0

### Minor Changes

- [#3033](https://github.com/withastro/starlight/pull/3033) [`8c19678`](https://github.com/withastro/starlight/commit/8c19678e57c0270d3d80d4678f23a6fc287ebf12) Thanks [@delucis](https://github.com/delucis)! - Adds support for generating clickable anchor links for headings.

By default, the Starlight Markdoc preset now includes a default `heading` node, which renders an anchor link beside headings in your Markdoc content.

If you want to disable this new feature, pass `headingLinks: false` in your Markdoc config:

```js
export default defineMarkdocConfig({
// Disable the default heading anchor link support
extends: [starlightMarkdoc({ headingLinks: false })],
});
```

⚠️ **BREAKING CHANGE:** The minimum supported peer version of Starlight is now v0.34.0.

Please update Starlight and the Starlight Markdoc preset together:

```sh
npx @astrojs/upgrade
```

## 0.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/markdoc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@astrojs/starlight-markdoc",
"version": "0.3.1",
"version": "0.4.0",
"description": "Markdoc preset for the Starlight documentation theme for Astro",
"author": "Chris Swithinbank <swithinbank@gmail.com>",
"license": "MIT",
Expand Down
Loading