Skip to content

Commit 643c1dd

Browse files
committed
Merge branch 'update-html-proofer'
2 parents 87c84c1 + 2a98482 commit 643c1dd

File tree

6 files changed

+27
-27
lines changed

6 files changed

+27
-27
lines changed

Gemfile.lock

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.8.0)
5-
public_suffix (>= 2.0.2, < 5.0)
4+
addressable (2.8.1)
5+
public_suffix (>= 2.0.2, < 6.0)
66
colorator (1.1.0)
77
concurrent-ruby (1.1.8)
88
em-websocket (0.5.2)
@@ -15,14 +15,15 @@ GEM
1515
ffi (1.15.5)
1616
ffi (1.15.5-x64-mingw32)
1717
forwardable-extended (2.6.0)
18-
html-proofer (3.19.2)
18+
html-proofer (4.4.3)
1919
addressable (~> 2.3)
2020
mercenary (~> 0.3)
21-
nokogumbo (~> 2.0)
22-
parallel (~> 1.3)
21+
nokogiri (~> 1.13)
22+
parallel (~> 1.10)
2323
rainbow (~> 3.0)
2424
typhoeus (~> 1.3)
2525
yell (~> 2.0)
26+
zeitwerk (~> 2.5)
2627
http_parser.rb (0.6.0)
2728
i18n (0.9.5)
2829
concurrent-ruby (~> 1.0)
@@ -58,19 +59,17 @@ GEM
5859
neat (3.0.0)
5960
sass (~> 3.4)
6061
thor (~> 0.19)
61-
nokogiri (1.13.6)
62+
nokogiri (1.13.9)
6263
mini_portile2 (~> 2.8.0)
6364
racc (~> 1.4)
64-
nokogiri (1.13.6-x64-mingw32)
65+
nokogiri (1.13.9-x64-mingw32)
6566
racc (~> 1.4)
66-
nokogumbo (2.0.5)
67-
nokogiri (~> 1.8, >= 1.8.4)
68-
parallel (1.21.0)
67+
parallel (1.22.1)
6968
pathutil (0.16.2)
7069
forwardable-extended (~> 2.6)
71-
public_suffix (4.0.6)
70+
public_suffix (5.0.0)
7271
racc (1.6.0)
73-
rainbow (3.0.0)
72+
rainbow (3.1.1)
7473
rake (12.3.3)
7574
rb-fsevent (0.11.0)
7675
rb-inotify (0.10.1)
@@ -88,6 +87,7 @@ GEM
8887
ethon (>= 0.9.0)
8988
wdm (0.1.1)
9089
yell (2.2.2)
90+
zeitwerk (2.6.1)
9191

9292
PLATFORMS
9393
ruby

Rakefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@ end
113113

114114
task :validate_links => [:build] do
115115
# Explanation of arguments:
116-
# --assume-extension # Tells html-proofer that `.html` files can be accessed without the `.html` part in the url.
117-
# --disable-external # For speed. Ideally we'd check external links too, but ignoring for now.
118-
# --empty-alt-ignore # To avoid needing to fix lots upfront, we can migrate towards this later.
119-
# --allow-hash-href # Allow empty `#` links to mean "top of page". It's true that these can be errors, however we have far too many to really address this.
120-
# --url-swap # Adjust for Jekyll's baseurl. See https://github.com/gjtorikian/html-proofer/issues/618 for more.
121-
sh('bundle exec htmlproofer _site --assume-extension --disable-external --empty-alt-ignore --allow-hash-href --url-swap "^/docs/:/"')
116+
# --disable-external # For speed. Ideally we'd check external links too, but ignoring for now.
117+
# --ignore-missing-alt # To avoid needing to fix lots upfront, we can migrate towards this later.
118+
# --allow-hash-href # Allow empty `#` links to mean "top of page". It's true that these can be errors, however we have far too many to really address this.
119+
# --allow-missing-href # Allow missing hrefs as we use them in the troubleshooter and rules (as anchors). It's true that these can be errors, however we have plenty which are legitimate.
120+
# --swap-urls # Adjust for Jekyll's baseurl. See https://github.com/gjtorikian/html-proofer/issues/618 for more.
121+
sh('bundle exec htmlproofer _site --disable-external true --ignore-missing-alt true --allow-hash-href true --allow-missing-href true --swap-urls "^/docs/:/"')
122122
end
123123

124124
task :validate_sidebar_tree => [:build] do

_config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ plugins:
1414
- jekyll-redirect-from
1515

1616
links:
17-
compete: //docs.google.com/forms/d/1Ryg2cfAxfwMOBnT01aj-fzsp51F3B182S5e53ye8aMw/viewform
18-
volunteer: //docs.google.com/forms/d/1MIGf3P30dw0QAtP8OkxK2v7VRDEAN_54JoZHCVMbqDY/viewform
19-
donate: //link.justgiving.com/v1/charity/donate/charityId/3118662?tipScheme=TipJar2.1&isRecurring=true&amount=20.00&reference=givingcheckout_tj21
17+
compete: https://docs.google.com/forms/d/1Ryg2cfAxfwMOBnT01aj-fzsp51F3B182S5e53ye8aMw/viewform
18+
volunteer: https://docs.google.com/forms/d/1MIGf3P30dw0QAtP8OkxK2v7VRDEAN_54JoZHCVMbqDY/viewform
19+
donate: https://link.justgiving.com/v1/charity/donate/charityId/3118662?tipScheme=TipJar2.1&isRecurring=true&amount=20.00&reference=givingcheckout_tj21
2020

2121
navigation:
2222
- about

_includes/footer.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ <h4>Student Robotics</h4>
3737
<p>&nbsp;</p>
3838
<p>
3939
The fantastic photos come from
40-
<a href="//www.flickr.com/photos/richardpbarlow/">Richard Barlow</a>,
41-
<a href="//www.flickr.com/photos/howiegoing/">Howard Buck</a>,
42-
<a href="//www.flickr.com/photos/theorangeone/">Jake Howard</a>,
40+
<a href="https://www.flickr.com/photos/richardpbarlow/">Richard Barlow</a>,
41+
<a href="https://www.flickr.com/photos/howiegoing/">Howard Buck</a>,
42+
<a href="https://www.flickr.com/photos/theorangeone/">Jake Howard</a>,
4343
Laurie Kirkcaldy,
4444
Anton Nikitin,
4545
Antoine Petty, and
46-
<a href="http://www.headington.org/">Headington School Oxford</a>.
46+
<a href="https://www.headington.org/">Headington School Oxford</a>.
4747
</p>
4848
</div>
4949
<div class="column d-6-12 text-right">

kit/brain_board/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ We recommend using [Etcher](https://etcher.io), as it's simple to use, and avail
7171
![Etcher example]({{ site.baseurl }}/images/content/kit/etcher.png)
7272

7373
<div class="info" markdown="1">
74-
If you choose to use a tool other than Etcher, you may need to extract the `srobo-robot-{{ latest_version }}.img.xz` to `srobo-robot-{{ latest_version }}.img`. There are many tools available for this, e.g. [7-zip](http://www.7-zip.org/).
74+
If you choose to use a tool other than Etcher, you may need to extract the `srobo-robot-{{ latest_version }}.img.xz` to `srobo-robot-{{ latest_version }}.img`. There are many tools available for this, e.g. [7-zip](https://www.7-zip.org/).
7575
</div>
7676

7777
### Flashing

programming/sr/ruggeduinos/custom_firmware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@ ser = serial.Serial(R.ignored_ruggeduinos[RUGGEDUINO_ID])
142142

143143
~~~~~
144144

145-
Refer to the [pyserial documentation](http://pyserial.sourceforge.net/) for more information on how to use pyserial.
145+
Refer to the [pyserial documentation](https://pyserial.readthedocs.org/en/latest/) for more information on how to use pyserial.

0 commit comments

Comments
 (0)