From dc6a9f3b1269b30b94faae7b21b6f02804f7fedb Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 17 Mar 2025 21:49:27 +0000
Subject: [PATCH] chore(deps): bump rlespinasse/github-slug-action (#1851)
---
docs/configuration.md | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/docs/configuration.md b/docs/configuration.md
index 1622da6..e29dc80 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -108,3 +108,25 @@
You can see a list of all plugins and their configuration options [[tags/plugin|here]].
If you'd like to make your own plugins, see the [[making plugins|making custom plugins]] guide.
+
+## Fonts
+
+Fonts can be specified as a `string` or a `FontSpecification`:
+
+```ts
+// string
+typography: {
+ header: "Schibsted Grotesk",
+ ...
+}
+
+// FontSpecification
+typography: {
+ header: {
+ name: "Schibsted Grotesk",
+ weights: [400, 700],
+ includeItalic: true,
+ },
+ ...
+}
+```
--
Gitblit v1.10.0