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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1efbf4080e17ee8c6baacd375198514960375306d00ae5db4a690fe6e39afbbc
4
- data.tar.gz: 6f5b547545094a894e4e57950e0dc709d2b1d4ce5d58ab8e771448920d7ec96a
3
+ metadata.gz: 7019b4bfa6758ad43ec6d93cd844cc06f3b4b02012a74724dd8322feb37b6fcf
4
+ data.tar.gz: f92d15cfc329f5aae82c4fa7ae2be881076825ed61f8b414efe85a586d81aff8
5
5
  SHA512:
6
- metadata.gz: 590a2c2236f07c1f548092fdd1bdaa15e9323a6fd6e00b721746ecfdb8d6d7a54e3dfee17ca12af57a3aa40be69b66cd01e75217f95e465b038957234139ed47
7
- data.tar.gz: 50dd8ed83ec0b59cfc5cdbcafe390daa88465af649e0f4c03cdecaa8ba27aace434b8ecbf7fafd713cca73b002c364c6ec0384ba3849e6d2bbf7b1d75115ae9c
6
+ metadata.gz: f2e8911addbec8107ed4b3cf4cce9604c2da010fe33ec455d935401fbac762b17a08aa0948acef648198269bc78d490fa9c4723492eab7635a5f15ec34f72d1b
7
+ data.tar.gz: 1f7f3fd921b46e857e9782dffec7df2e8ff3a83f9ef82b90f1ab18ebf9797af85751de3c9d99ca0deee2b493750d1bcd279bc7db52e34eec1bcba82dc7be71bd
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jekyll-autolinks (0.1.0)
4
+ jekyll-autolinks (0.1.1)
5
5
  jekyll (>= 3.9.3)
6
6
  rinku (~> 2.0.6)
7
7
 
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"]`.
@@ -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.0"
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."
@@ -4,6 +4,7 @@ require 'rinku'
4
4
  module Jekyll
5
5
  class Autolinks < Jekyll::Generator
6
6
  safe true
7
+ priority :low
7
8
 
8
9
  def initialize(config)
9
10
  config['autolinks'] ||= {}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-autolinks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ADoyle