jekyll-autolinks 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -3
- data/jekyll-autolinks.gemspec +1 -1
- data/lib/jekyll-autolinks.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7019b4bfa6758ad43ec6d93cd844cc06f3b4b02012a74724dd8322feb37b6fcf
|
|
4
|
+
data.tar.gz: f92d15cfc329f5aae82c4fa7ae2be881076825ed61f8b414efe85a586d81aff8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2e8911addbec8107ed4b3cf4cce9604c2da010fe33ec455d935401fbac762b17a08aa0948acef648198269bc78d490fa9c4723492eab7635a5f15ec34f72d1b
|
|
7
|
+
data.tar.gz: 1f7f3fd921b46e857e9782dffec7df2e8ff3a83f9ef82b90f1ab18ebf9797af85751de3c9d99ca0deee2b493750d1bcd279bc7db52e34eec1bcba82dc7be71bd
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -24,8 +24,6 @@ Modified based on [ivantsepp/jekyll-autolink_email](https://github.com/ivantsepp
|
|
|
24
24
|
- jekyll-autolinks
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
## Usage
|
|
28
|
-
|
|
29
27
|
## Configuration
|
|
30
28
|
|
|
31
29
|
Autolinking is done by [Rinku](https://github.com/vmg/rinku) so visit that gem for a more in-depth explanation of the configuration options:
|
|
@@ -40,7 +38,7 @@ autolink_email:
|
|
|
40
38
|
|
|
41
39
|
```
|
|
42
40
|
link_attr: 'target="_blank" class="my-link"'
|
|
43
|
-
# hi.com => '<a href="http://hi.com" target="_blank" class="my-link">hi.com</a>'
|
|
41
|
+
# hi.com => '<a href="http://hi.com" target="_blank" class="my-link">hi.com</a>'
|
|
44
42
|
```
|
|
45
43
|
|
|
46
44
|
- `skip_tags` is a list of strings with the names of HTML tags that will be skipped when autolinking. If nil, this defaults to the value of the global Rinku.skip_tags, which is initially `["a", "pre", "code", "kbd", "script"]`.
|
data/jekyll-autolinks.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "jekyll-autolinks"
|
|
7
|
-
spec.version = "0.1.
|
|
7
|
+
spec.version = "0.1.1"
|
|
8
8
|
spec.authors = ["ADoyle"]
|
|
9
9
|
spec.email = ["adoyle.h@gmail.com"]
|
|
10
10
|
spec.summary = "Autolink for your Jekyll site."
|
data/lib/jekyll-autolinks.rb
CHANGED