File tree 4 files changed +40
-2
lines changed
4 files changed +40
-2
lines changed Original file line number Diff line number Diff line change @@ -24,3 +24,4 @@ group :jekyll_plugins do
24
24
end
25
25
26
26
gem 'sinatra' , '~> 1.4.2'
27
+ gem 'nokogiri'
Original file line number Diff line number Diff line change 42
42
rb-inotify (~> 0.9 , >= 0.9.7 )
43
43
mercenary (0.3.6 )
44
44
method_source (0.8.2 )
45
+ mini_portile2 (2.3.0 )
46
+ nokogiri (1.8.2 )
47
+ mini_portile2 (~> 2.3.0 )
45
48
octopress (3.0.11 )
46
49
jekyll (>= 2.0 )
47
50
mercenary (~> 0.3.2 )
@@ -100,6 +103,7 @@ DEPENDENCIES
100
103
jekyll-redirect-from
101
104
jekyll-sitemap
102
105
jekyll-time-to-read
106
+ nokogiri
103
107
octopress (~> 3.0 )
104
108
octopress-include-tag
105
109
pry
@@ -113,4 +117,4 @@ RUBY VERSION
113
117
ruby 2.4.1p111
114
118
115
119
BUNDLED WITH
116
- 1.15.4
120
+ 1.16.1
Original file line number Diff line number Diff line change
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' ) =~ /\A http/i
18
+
19
+ # Play nice with our own links
20
+ next if link . get_attribute ( 'href' ) =~ /\A https?:\/ \/ \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 )
Original file line number Diff line number Diff line change 24
24
< div class ="grid__item two-thirds lap-one-whole palm-one-whole ">
25
25
{% endif %}
26
26
27
- {{ content }}
27
+ {{ content | nofollow }}
28
28
29
29
</ div >
30
30
You can’t perform that action at this time.
0 commit comments