From 46d2783965e03ab5eda9c658234e68d85c9e628b Mon Sep 17 00:00:00 2001 From: Chris Halbert Date: Wed, 27 Dec 2023 16:42:48 -0500 Subject: [PATCH 1/3] Add npm to list of requirements, since bootstrap uses it. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b617f5a54e2..f64492b3dc1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -47,7 +47,7 @@ If you're writing content, see the [style guide](./docs/styleguide.md) to help y ## Setting up your environment -This site is powered by [Jekyll](https://jekyllrb.com/). Running it on your local machine requires a working [Ruby](https://www.ruby-lang.org/en/) installation with [Bundler](https://bundler.io/). +This site is powered by [Jekyll](https://jekyllrb.com/). Running it on your local machine requires a working [Ruby](https://www.ruby-lang.org/en/) installation with [Bundler](https://bundler.io/) along with [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm). Once you have that set up: From 0108ff10845b667fff19999e92a83232d9fdc160 Mon Sep 17 00:00:00 2001 From: Chris Halbert Date: Wed, 27 Dec 2023 16:43:08 -0500 Subject: [PATCH 2/3] Add exception for reddit. --- script/html-proofer | 1 + 1 file changed, 1 insertion(+) diff --git a/script/html-proofer b/script/html-proofer index 45a74b85e26..2300e120cfc 100755 --- a/script/html-proofer +++ b/script/html-proofer @@ -14,6 +14,7 @@ url_ignores = [ %r{^https://guides\.github\.com/}, %r{^https://help\.github\.com/}, %r{^https://github\.com/}, + %r{^https?://(www\.)?reddit\.com/}, ] HTMLProofer::Runner.new( From de68a066c138c755a58be555f0d0b01fe3179857 Mon Sep 17 00:00:00 2001 From: Chris Halbert Date: Wed, 27 Dec 2023 16:49:51 -0500 Subject: [PATCH 3/3] Fix regex. --- script/html-proofer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/html-proofer b/script/html-proofer index 2300e120cfc..6ebe6940e95 100755 --- a/script/html-proofer +++ b/script/html-proofer @@ -14,7 +14,7 @@ url_ignores = [ %r{^https://guides\.github\.com/}, %r{^https://help\.github\.com/}, %r{^https://github\.com/}, - %r{^https?://(www\.)?reddit\.com/}, + %r{^https?://(www\.)?reddit\.com}, ] HTMLProofer::Runner.new(