jekyll-scholar 5.8.3 → 5.8.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -5
- data/features/cite_details.feature +1 -1
- data/lib/jekyll/scholar/defaults.rb +1 -1
- 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: 261b4ab57efdaea11eafcbfdd1973cd051a10fa5
|
4
|
+
data.tar.gz: e6aa15bdee7af82b7b158650cf497b90556d5d5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78ffddca578af97b9df9cf7267f09dff1391791f67931e981f6df7f74df20cde569495b6120ce596c658826f281763c3bcebe81edfe2782beba5ba711439fc4d
|
7
|
+
data.tar.gz: dd7147b10476c5b591f0b714f8ed4519ca48274ed955196bcab8b85c8a476e43ab55767174b8a13e60cd46844b0fd9b8fdd4c6cd8ce3e532d06c90239d9001b6
|
data/README.md
CHANGED
@@ -73,7 +73,7 @@ default configuration is as follows:
|
|
73
73
|
replace_strings: true
|
74
74
|
join_strings: true
|
75
75
|
|
76
|
-
use_raw_bibtex_entry:
|
76
|
+
use_raw_bibtex_entry: true
|
77
77
|
bibtex_filters:
|
78
78
|
- superscript
|
79
79
|
- latex
|
@@ -101,10 +101,11 @@ The `source` option indicates where your bibliographies are stored;
|
|
101
101
|
`bibliography` is the name of your default bibliography. For best results,
|
102
102
|
please ensure that your Bibliography is encoded as ASCII or UTF-8.
|
103
103
|
|
104
|
-
The `use_raw_bibtex_entry` option
|
105
|
-
|
106
|
-
|
107
|
-
parsed by Liquid, while it was intended to keep the
|
104
|
+
The `use_raw_bibtex_entry` option by default disable parsing of Liquid tags
|
105
|
+
embedded in the Bibtex fields. This option provides a way to circumvent the
|
106
|
+
problem that (the conflicting syntax of) the double braces functionality of
|
107
|
+
BibTex is accidentally parsed by Liquid, while it was intended to keep the
|
108
|
+
exact capitalization style.
|
108
109
|
|
109
110
|
The `sort_by` and `order` options specify if and how bibliography
|
110
111
|
entries are sorted. Entries can be sorted on multiple fields, by using
|
@@ -36,7 +36,6 @@ Feature: Citations
|
|
36
36
|
| source | ./_bibliography |
|
37
37
|
| bibliography_template | {{entry.bibtex}} |
|
38
38
|
| details_layout | details.html |
|
39
|
-
| use_raw_bibtex_entry | true |
|
40
39
|
And I have a "_bibliography" directory
|
41
40
|
And I have a file "_bibliography/references.bib":
|
42
41
|
"""
|
@@ -65,6 +64,7 @@ Feature: Citations
|
|
65
64
|
| source | ./_bibliography |
|
66
65
|
| bibliography_template | {{entry.bibtex}} |
|
67
66
|
| details_layout | details.html |
|
67
|
+
| use_raw_bibtex_entry | false |
|
68
68
|
And I have a "_bibliography" directory
|
69
69
|
And I have a file "_bibliography/references.bib":
|
70
70
|
"""
|
@@ -28,7 +28,7 @@ module Jekyll
|
|
28
28
|
'details_dir' => 'bibliography',
|
29
29
|
'details_layout' => 'bibtex.html',
|
30
30
|
'details_link' => 'Details',
|
31
|
-
'use_raw_bibtex_entry' =>
|
31
|
+
'use_raw_bibtex_entry' => true,
|
32
32
|
|
33
33
|
'bibliography_class' => 'bibliography',
|
34
34
|
'bibliography_template' => '{{reference}}',
|
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.4
|
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-09-
|
11
|
+
date: 2016-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|