Skip to content

Commit

Permalink
Add jekyll-target-blank plugin to open links in new tabs (#155)
Browse files Browse the repository at this point in the history
- Add gem to Gemfile
- Add plugin to jekyll
- Fix up broken links in a few posts
  • Loading branch information
franc0is authored Nov 14, 2020
1 parent 8bfc536 commit 1aa4f80
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ gem 'jekyll-seo-tag', "~> 2.6.1"
group :jekyll_plugins do
gem 'jekyll-diagrams'
end

gem "jekyll-target-blank", "~> 2.0"
7 changes: 7 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ GEM
sass (~> 3.4)
jekyll-seo-tag (2.6.1)
jekyll (>= 3.3, < 5.0)
jekyll-target-blank (2.0.0)
jekyll (>= 3.0, < 5.0)
nokogiri (~> 1.10)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (1.17.0)
Expand All @@ -45,6 +48,9 @@ GEM
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
mercenary (0.3.6)
mini_portile2 (2.4.0)
nokogiri (1.10.10)
mini_portile2 (~> 2.4.0)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (3.0.3)
Expand All @@ -69,6 +75,7 @@ DEPENDENCIES
jekyll-feed (~> 0.12.1)
jekyll-paginate (~> 1.1)
jekyll-seo-tag (~> 2.6.1)
jekyll-target-blank (~> 2.0)

BUNDLED WITH
2.1.4
5 changes: 5 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ plugins:
- jekyll-paginate
- jekyll-seo-tag
- jekyll-diagrams
- jekyll-target-blank

target-blank:
noopener: false
noreferrer: false

tag_page: '/tags/'
category_page: '/categories/'
Expand Down
2 changes: 1 addition & 1 deletion _posts/2019-09-17-continuous-integration-for-firmware.md
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ all about it in the comments, or at

[^1]: For example, see [this post](http://www.cyrilfougeray.com/2020/10/03/firmware-qa-ci-cd.html) by an Equisense team member.
[^2]: [Circle CI](https://circleci.com)
[^3]: [Circle CI Documentation - Jobs, Steps, Workflows]((https://circleci.com/docs/2.0/jobs-steps/#section=getting-started).)
[^3]: [Circle CI Documentation - Jobs, Steps, Workflows](https://circleci.com/docs/2.0/jobs-steps/#section=getting-started)
[^4]: [Checkout Step - CircleCI](https://circleci.com/docs/2.0/configuration-reference/#checkout)
[^5]: [Storing Build Artifacts - CircleCI](https://circleci.com/docs/2.0/artifacts/)
[^6]: [CircleCI's command-line application](https://github.com/CircleCI-Public/circleci-cli)
4 changes: 2 additions & 2 deletions _posts/2020-10-06-separating-unique-parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ was a good idea to also generate the more easily readable version of the file.
```

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

0 comments on commit 1aa4f80

Please sign in to comment.