You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -170,290 +170,67 @@ This helps us recognize and prioritize requests.
170
170
This section describes some of our styles, elements, and conventions for docs content.
171
171
172
172
### Frontmatter
173
+
The header/metadata part of the content helps the article appearing correctly in docs. It is also important for external AI tools and search optimization.
173
174
174
-
The header/metadata part of the content is critical to the article appearing correctly in docs.
This is the internal unique `id` for the article. This will be used when referencing other articles within the `relatedArticles` frontmatter. You can use our [online UUID generator tool](https://kinde.com/tools/online-uuid-generator/) to use as the `page_id`.
175
+
Copy the whole example below into the top of any new topic. And complete the required sections. Complete optional sections if you want.
Providing the `order` frontmatter is completely optional and will be treated as a hint for us to where to place the file. We may update the article’s `order` upon further review.
206
-
207
-
</Aside>
208
-
209
-
**type:**`number`
210
-
211
-
Control the order of this article when sorting an autogenerated group of links under a specific topic or subtopic. Lower numbers are displayed higher up in the link group.
**`title`**(string) - You must provide a title for every page. This will be displayed at the top of the page, in browser tabs, and in page metadata.
353
214
354
-
Date when the article was last updated in YYYY-MM-DD format.
215
+
**`page_id`** (uuid) - This is the internal unique `id` for the article. This will be used when referencing other articles within the `relatedArticles` frontmatter. You can use our [online UUID generator tool](https://kinde.com/tools/online-uuid-generator/) to use as the `page_id`.
355
216
356
-
```md title="example.mdx"
357
-
---
358
-
title: Example Article
359
-
page_id: 12345678-1234-1234-1234-123456789012
360
-
updated: 2024-01-15
361
-
---
362
-
```
217
+
**`description`** (string) - A brief description of the article content, used for SEO and metadata.
**`keywords`** (array) - Array of keywords for search optimization.
365
220
366
-
**type:**`boolean`
221
+
#### Optional Fields
367
222
368
-
Whether the article should be featured in special displays.
223
+
**`order`** (number) - Control the order of this article when sorting an autogenerated group of links under a specific topic or subtopic. Lower numbers are displayed higher up in the link group. Providing the `order` frontmatter is completely optional and will be treated as a hint for us to where to place the file. We may update the article's `order` upon further review.
369
224
370
-
```md title="example.mdx"
371
-
---
372
-
title: Example Article
373
-
page_id: 12345678-1234-1234-1234-123456789012
374
-
featured: false
375
-
---
376
-
```
225
+
**`topics`** (array) - Array of topic tags that help categorize the content.
0 commit comments