Skip to content

Commit

Permalink
docs: fix broken links
Browse files Browse the repository at this point in the history
Closes #672

I have left the links to some external websites that I could not
access, since I do not know whether they're gone for good or
just experiencing some issues.
  • Loading branch information
ludofischer committed Apr 22, 2021
1 parent 3fdd694 commit c49f4df
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions site/docs/community.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion site/docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ If you don't have time to contribute to the project directly, you can also
help us out by starring the repository, or [follow us on Twitter][twitter].
Word of mouth really does mean a lot to us!

You can also [help support us financially](/support-us/).
You can also [help support us financially](/docs/support-us/).

[chat]: https://gitter.im/postcss/postcss

Expand Down
4 changes: 2 additions & 2 deletions site/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Once you have done this, you will need to configure cssnano by creating a
cssnano as well as any other [plugins] that you might want for your project;
as an example:

[plugins]: https://github.com/postcss/postcss/blob/master/site/plugins.md
[plugins]: https://github.com/postcss/postcss/blob/main/docs/plugins.md

```js
module.exports = {
Expand All @@ -94,7 +94,7 @@ module.exports = {
};
```

_Read more about presets in [our presets guide](/guides/presets)._
_Read more about presets in [our presets guide](/docs/presets)._

You can now minify your CSS files! Try it out by creating a CSS file in your
project named `input.css`, with some styles in there. Then, run:
Expand Down
4 changes: 2 additions & 2 deletions site/docs/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ plugin which you can add to your build process, to ensure that the resulting
stylesheet is as small as possible for a production environment.

If you don't know what a build process is, don't worry as we cover this in
[our getting started guide](/guides/getting-started).
[our getting started guide](/docs/getting-started).


## How does it benefit me?
Expand All @@ -58,7 +58,7 @@ If you don't know what a build process is, don't worry as we cover this in

We offer many different optimisations, ranging from simple transforms such as
whitespace removal, to complex transforms that can merge identical keyframes
with different names. See [the presets guide](/guides/presets) for
with different names. See [the presets guide](/docs/presets) for
more information.

### Unified CSS processing
Expand Down
2 changes: 1 addition & 1 deletion site/docs/presets.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -180,4 +180,4 @@ module.exports = {
};
```

[guideadvancedtransforms]: /guides/advanced-transforms
[guideadvancedtransforms]: /docs/advanced-transforms
2 changes: 1 addition & 1 deletion site/docs/support_us.mdx → site/docs/support-us.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: Support_Us
id: Support-Us
title: Support cssnano's development
layout: Page
---
Expand Down
4 changes: 2 additions & 2 deletions site/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = {
activeBasePath: 'optimisations',
},
{ to: 'playground', label: 'Playground', position: 'left' },
{ to: 'docs/support_us', label: 'Support', position: 'left' },
{ to: 'docs/support-us', label: 'Support', position: 'left' },
{ to: 'blog', label: 'Blog', position: 'right' },
{
href: 'https://github.com/cssnano/cssnano',
Expand Down Expand Up @@ -55,7 +55,7 @@ module.exports = {
label: 'Optimizations',
},
{ to: 'playground', label: 'Playground' },
{ to: 'docs/support_us', label: 'Support' },
{ to: 'docs/support-us', label: 'Support' },
],
},
{
Expand Down

0 comments on commit c49f4df

Please sign in to comment.