📝 Making pages
Pages in your docs are created through markdown files.
To add one, make a .md
file in the pages/
directory of your project.
pages/
home.md
my-new-page.md 👈
You can also put files a folder deep, which will group your docs in the menu.
pages/
home.md
quickstart/ 👈
install.md
booting-up.md
Each file should start with some front matter data like this:
---
published: true # ❗REQUIRED
title: My page title # ❗REQUIRED
description: Something about this page
order: 1 # Use to order pages in the menu
---
Now write your docs using markdown syntax, with extras like containers.
::: section body-text
# My title
Lorem ipsum...
```javascript
console.log('Hello world!');
```
:::
And if simple markdown isn’t enough, the docs are also processed with mdsvex, so you can use Svelte components and syntax directly in your markdown files!
<script>
import MyComponent from '$lib/components/MyComponent.svelte';
</script>
# My title
<MyComponent />
<style lang="scss">
h1 {
font-family: monospace;
}
</style>
Add Svelte components or custom styles in the src/lib
directory of your project.
Images
One small rule: Don’t use markdown image syntax for images located in your project.
Because the paths to images must be absolute (i.e., https://...
), you should use SvelteKit’s assets
store to prefix paths to local images instead. Just import and use the store in your markdown files like:
<script>
import { assets } from '$app/paths';
</script>
Lorem ipsum markdown...
<!-- ✅ Use an image tag -->
<img src="{`${assets}/images/my-image.jpg`}" alt="my image" />
<!-- ❌ Not markdown for local images -->
<!--  -->
Publishing
When you’re ready, configure GitHub Pages in the settings of your repo — Use the docs/
folder for your publishing source! — and put the URL to your Pages site in the homepage
key of your project’s package.json
.
Now upload your project to GitHub, sit back and relax. Through the magic of GitHub Actions, your site will rebuild to reflect your latest updates every time you push. 🍺