aboutsummaryrefslogtreecommitdiff
path: root/site/content/docs
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2020-09-17 20:01:04 +0300
committerGitHub <[email protected]>2020-09-17 20:01:04 +0300
commitb5fb84a91d43d5178c3a6732355f346fdc3a113c (patch)
treef9255aee5bea0c62f613c1a00ffa6c3ea8cf0dd1 /site/content/docs
parentfec511da025c39b40fa94da1c047688fa95dd577 (diff)
downloadbootstrap-b5fb84a91d43d5178c3a6732355f346fdc3a113c.tar.xz
bootstrap-b5fb84a91d43d5178c3a6732355f346fdc3a113c.zip
docs: fix a few redirects (#31689)
* Fix GitHub's permanent redirects * Fix a11yproject redirects * Update postcss-loader repo URL to the current one
Diffstat (limited to 'site/content/docs')
-rw-r--r--site/content/docs/5.0/getting-started/accessibility.md2
-rw-r--r--site/content/docs/5.0/getting-started/webpack.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/5.0/getting-started/accessibility.md b/site/content/docs/5.0/getting-started/accessibility.md
index 022efcc20..150c80d65 100644
--- a/site/content/docs/5.0/getting-started/accessibility.md
+++ b/site/content/docs/5.0/getting-started/accessibility.md
@@ -50,7 +50,7 @@ Bootstrap includes support for the [`prefers-reduced-motion` media feature](http
## Additional resources
- [Web Content Accessibility Guidelines (WCAG) 2.1](https://www.w3.org/TR/WCAG21/)
-- [The A11Y Project](https://a11yproject.com/)
+- [The A11Y Project](https://www.a11yproject.com/)
- [MDN accessibility documentation](https://developer.mozilla.org/en-US/docs/Web/Accessibility)
- [Tenon.io Accessibility Checker](https://tenon.io/)
- [Color Contrast Analyser (CCA)](https://developer.paciellogroup.com/resources/contrastanalyser/)
diff --git a/site/content/docs/5.0/getting-started/webpack.md b/site/content/docs/5.0/getting-started/webpack.md
index 10e536bbf..c67152f8d 100644
--- a/site/content/docs/5.0/getting-started/webpack.md
+++ b/site/content/docs/5.0/getting-started/webpack.md
@@ -42,7 +42,7 @@ First, create your own `_custom.scss` and use it to override the [built-in custo
@import "~bootstrap/scss/bootstrap";
{{< /highlight >}}
-For Bootstrap to compile, make sure you install and use the required loaders: [sass-loader](https://github.com/webpack-contrib/sass-loader), [postcss-loader](https://github.com/postcss/postcss-loader) with [Autoprefixer](https://github.com/postcss/autoprefixer#webpack). With minimal setup, your webpack config should include this rule or similar:
+For Bootstrap to compile, make sure you install and use the required loaders: [sass-loader](https://github.com/webpack-contrib/sass-loader), [postcss-loader](https://github.com/webpack-contrib/postcss-loader) with [Autoprefixer](https://github.com/postcss/autoprefixer#webpack). With minimal setup, your webpack config should include this rule or similar:
{{< highlight js >}}
...