jekyll-scholar 5.8.0 → 5.8.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/.travis.yml +3 -3
- data/Gemfile +1 -1
- data/lib/jekyll/scholar/defaults.rb +2 -0
- data/lib/jekyll/scholar/tags/bibliography.rb +4 -2
- data/lib/jekyll/scholar/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5580ad167dd318d827b12d25b568b01a8839f695
|
|
4
|
+
data.tar.gz: b222a4eacf852bbdcaccece79fafa83def744561
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 170732689212bbde970ffb52030d545e1118f34ae49754fd34d43de7915c223db60e278a98d710f17b0f481165286dc9dd4d1acb204c9edf8df85700bba88e64
|
|
7
|
+
data.tar.gz: 607485599c35cff2aed70356ea1c114cd4e54d099cdc521e6d888bc2c4807de4ac91cd8c40e2c7e7a213580c2340e4543f66a34876b6b4ea1825a4f7a8484ce6
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
|
@@ -7,6 +7,7 @@ group :development do
|
|
|
7
7
|
gem 'test-unit'
|
|
8
8
|
else
|
|
9
9
|
gem 'minitest', '< 5.0'
|
|
10
|
+
gem 'listen', '~>3.0.0'
|
|
10
11
|
end
|
|
11
12
|
|
|
12
13
|
gem 'rake'
|
|
@@ -14,7 +15,6 @@ group :development do
|
|
|
14
15
|
gem 'shoulda', '~> 3.5'
|
|
15
16
|
gem 'cucumber', '1.3.11'
|
|
16
17
|
gem 'redcarpet'
|
|
17
|
-
gem 'launchy', '~> 2.3'
|
|
18
18
|
|
|
19
19
|
gem 'unicode_utils'
|
|
20
20
|
|
|
@@ -11,6 +11,8 @@ module Jekyll
|
|
|
11
11
|
'bibliography_group_tag' => 'h2,h3,h4,h5',
|
|
12
12
|
'bibliography_list_tag' => 'ol',
|
|
13
13
|
'bibliography_item_tag' => 'li',
|
|
14
|
+
'bibliography_list_attributes' => {},
|
|
15
|
+
'bibliography_item_attributes' => {},
|
|
14
16
|
|
|
15
17
|
'source' => './_bibliography',
|
|
16
18
|
'bibliography' => 'references.bib',
|
|
@@ -89,10 +89,12 @@ module Jekyll
|
|
|
89
89
|
config['details_link'], :class => config['details_link_class'])
|
|
90
90
|
end
|
|
91
91
|
|
|
92
|
-
content_tag config['bibliography_item_tag'], reference
|
|
92
|
+
content_tag config['bibliography_item_tag'], reference, config['bibliography_item_attributes']
|
|
93
93
|
}.join("\n")
|
|
94
94
|
|
|
95
|
-
content_tag config['bibliography_list_tag'], bibliography,
|
|
95
|
+
content_tag config['bibliography_list_tag'], bibliography,
|
|
96
|
+
{ :class => config['bibliography_class'] }.merge(config['bibliography_list_attributes'])
|
|
97
|
+
|
|
96
98
|
end
|
|
97
99
|
|
|
98
100
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-scholar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.8.
|
|
4
|
+
version: 5.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sylvester Keil
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|