[docs] Fix links, little style tweaks (#2724)

This PR is a small but mighty improvement to our docs.

### Change Type

- [ ] `patch` — Bug fix
- [ ] `minor` — New feature
- [ ] `major` — Breaking change
- [ ] `dependencies` — Changes to package dependencies[^1]
- [x] `documentation` — Changes to the documentation only[^2]
- [ ] `tests` — Changes to any test code only[^2]
- [ ] `internal` — Any other changes that don't affect the published
package[^2]
- [ ] I don't know

[^1]: publishes a `patch` release, for devDependencies use `internal`
[^2]: will not publish a new version

---------

Co-authored-by: Mime Čuvalo <mimecuvalo@gmail.com>
This commit is contained in:
Steve Ruiz 2024-02-05 14:42:55 +00:00 committed by GitHub
parent 157d24db73
commit dc92e2c61f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 148 additions and 29 deletions

View file

@ -119,6 +119,13 @@ export function generateSection(section: InputSection, articles: Articles, index
: `/${section.id}/${categoryId}/${articleId}`,
}
if (isExamples) {
// split content above the first ---
const splitUp = parsed.content.split('---\n')
article.description = splitUp[0]
article.content = splitUp.slice(1).join('---\n')
}
if (isIndex) {
article.categoryIndex = -1
article.sectionIndex = -1