Skip to content

Commit 23d593c

Browse files
frenckballoob
authored andcommitted
Adds rel nofollow to external links (home-assistant#4918)
* ✨ Adds rel nofollow to external links Fixes home-assistant#4583 Signed-off-by: Franck Nijhof <[email protected]> * 🎀 Adds support for appending nofollow to existing external links
1 parent e62bb85 commit 23d593c

File tree

4 files changed

+40
-2
lines changed

4 files changed

+40
-2
lines changed

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ group :jekyll_plugins do
2424
end
2525

2626
gem 'sinatra', '~> 1.4.2'
27+
gem 'nokogiri'

Gemfile.lock

+5-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ GEM
4242
rb-inotify (~> 0.9, >= 0.9.7)
4343
mercenary (0.3.6)
4444
method_source (0.8.2)
45+
mini_portile2 (2.3.0)
46+
nokogiri (1.8.2)
47+
mini_portile2 (~> 2.3.0)
4548
octopress (3.0.11)
4649
jekyll (>= 2.0)
4750
mercenary (~> 0.3.2)
@@ -100,6 +103,7 @@ DEPENDENCIES
100103
jekyll-redirect-from
101104
jekyll-sitemap
102105
jekyll-time-to-read
106+
nokogiri
103107
octopress (~> 3.0)
104108
octopress-include-tag
105109
pry
@@ -113,4 +117,4 @@ RUBY VERSION
113117
ruby 2.4.1p111
114118

115119
BUNDLED WITH
116-
1.15.4
120+
1.16.1

plugins/no_follow.rb

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Jekyll Auto Nofollow Plugin
2+
# Automatically adds rel='external nofollow' to outgoing links.
3+
4+
require 'jekyll'
5+
require 'nokogiri'
6+
7+
module Jekyll
8+
module NoFollow
9+
def nofollow(content)
10+
dom = Nokogiri::HTML.fragment(content)
11+
12+
# Find all links
13+
dom.css('a').each do |link|
14+
rel = ['external', 'nofollow']
15+
16+
# All external links start with 'http', skip when this one does not
17+
next unless link.get_attribute('href') =~ /\Ahttp/i
18+
19+
# Play nice with our own links
20+
next if link.get_attribute('href') =~ /\Ahttps?:\/\/\w*.?home-assistant.io/i
21+
22+
# Play nice with links that already have a rel attribute set
23+
rel.unshift(link.get_attribute('rel'))
24+
25+
# Add rel attribute to link
26+
link.set_attribute('rel', rel.join(' ').strip)
27+
end
28+
dom.to_s
29+
end
30+
end
31+
end
32+
33+
Liquid::Template.register_filter(Jekyll::NoFollow)

source/_layouts/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
2525
{% endif %}
2626

27-
{{ content }}
27+
{{ content | nofollow }}
2828

2929
</div>
3030

0 commit comments

Comments
 (0)