Skip to content

Commit 60dedde

Browse files
committed
Add jekyll-target-blank plugin to open links in new tabs
- Add gem to Gemfile - Add plugin to jekyll - Fix up broken links in a few posts
1 parent 9de4d7c commit 60dedde

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ gem 'jekyll-seo-tag', "~> 2.6.1"
1515
group :jekyll_plugins do
1616
gem 'jekyll-diagrams'
1717
end
18+
19+
gem "jekyll-target-blank", "~> 2.0"

Gemfile.lock

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ GEM
3636
sass (~> 3.4)
3737
jekyll-seo-tag (2.6.1)
3838
jekyll (>= 3.3, < 5.0)
39+
jekyll-target-blank (2.0.0)
40+
jekyll (>= 3.0, < 5.0)
41+
nokogiri (~> 1.10)
3942
jekyll-watch (2.2.1)
4043
listen (~> 3.0)
4144
kramdown (1.17.0)
@@ -45,6 +48,9 @@ GEM
4548
rb-inotify (~> 0.9, >= 0.9.7)
4649
ruby_dep (~> 1.2)
4750
mercenary (0.3.6)
51+
mini_portile2 (2.4.0)
52+
nokogiri (1.10.10)
53+
mini_portile2 (~> 2.4.0)
4854
pathutil (0.16.2)
4955
forwardable-extended (~> 2.6)
5056
public_suffix (3.0.3)
@@ -69,6 +75,7 @@ DEPENDENCIES
6975
jekyll-feed (~> 0.12.1)
7076
jekyll-paginate (~> 1.1)
7177
jekyll-seo-tag (~> 2.6.1)
78+
jekyll-target-blank (~> 2.0)
7279

7380
BUNDLED WITH
7481
2.1.4

_config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ plugins:
3838
- jekyll-paginate
3939
- jekyll-seo-tag
4040
- jekyll-diagrams
41+
- jekyll-target-blank
42+
43+
target-blank:
44+
noopener: false
45+
noreferrer: false
4146

4247
tag_page: '/tags/'
4348
category_page: '/categories/'

_posts/2019-09-17-continuous-integration-for-firmware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ all about it in the comments, or at
562562

563563
[^1]: For example, see [this post](http://www.cyrilfougeray.com/2020/10/03/firmware-qa-ci-cd.html) by an Equisense team member.
564564
[^2]: [Circle CI](https://circleci.com)
565-
[^3]: [Circle CI Documentation - Jobs, Steps, Workflows]((https://circleci.com/docs/2.0/jobs-steps/#section=getting-started).)
565+
[^3]: [Circle CI Documentation - Jobs, Steps, Workflows](https://circleci.com/docs/2.0/jobs-steps/#section=getting-started)
566566
[^4]: [Checkout Step - CircleCI](https://circleci.com/docs/2.0/configuration-reference/#checkout)
567567
[^5]: [Storing Build Artifacts - CircleCI](https://circleci.com/docs/2.0/artifacts/)
568568
[^6]: [CircleCI's command-line application](https://github.com/CircleCI-Public/circleci-cli)

_posts/2020-10-06-separating-unique-parameters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,8 @@ was a good idea to also generate the more easily readable version of the file.
235235
```
236236

237237
> The shell script in this section lets TTN come up with a DevEUI for
238-
> simplicity. Check out [this link](https://www.
239-
> thethingsnetwork.org/forum/t/deveui-for-non-hardware-assigned-values/2093/23)
238+
> simplicity. Check out
239+
> [this link](https://www.thethingsnetwork.org/forum/t/deveui-for-non-hardware-assigned-values/2093/23)
240240
> to see why you should not do that in production.
241241
242242
## Programming a Device

0 commit comments

Comments
 (0)