Skip to content

Commit

Permalink
fix: broken links
Browse files Browse the repository at this point in the history
Signed-off-by: Philip Miglinci <[email protected]>
  • Loading branch information
pmig committed Jan 7, 2025
1 parent 2d3cbc9 commit 995e515
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion blog/2024-02-01-technical-preview/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ flowchart BT

### Challenges that need to be solved

We already covered some our upcoming features in our [public roadmap](/roadmap), but I would also like to take this opportunity to shortly speak about broader challenges.
We already covered some our upcoming features in our [GitHub issues](https://github.com/glasskube/glasskube/issues), but I would also like to take this opportunity to shortly speak about broader challenges.

#### Kubernetes version compatibility

Expand Down
5 changes: 3 additions & 2 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ const config: Config = {
organizationName: 'glasskube', // Usually your GitHub org/user name.
projectName: 'glasskube', // Usually your repo name.

onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'throw',
onBrokenAnchors: 'ignore',

// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function FAQ({faq}: {faq: PricingFAQ}) {
<div className="card__header">
<h3 className="anchor">
{faq.question}
<Link className="hash-link" href={'#' + faq.id} />
<Link className="hash-link" href={'#' + faq.id} />
</h3>
</div>
<div className="card__body">
Expand Down
2 changes: 0 additions & 2 deletions src/pages/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ As we are working towards this goal we will need to iterate fast and things will

## Packages and Apps schedule 📦

All planned and already supported packages can be found on our [Packages Directory](/packages/).

Can't find a package or want your app included in the list? We are always adding new supported packages & apps,
so just join us on [Discord](https://discord.gg/SxH6KUCGH7) or open up a new issue and let us know what is missing!

Expand Down

0 comments on commit 995e515

Please sign in to comment.