jekyll-scholar 5.4.0 → 5.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/features/details.feature +5 -2
- data/lib/jekyll/scholar/generators/details.rb +1 -0
- data/lib/jekyll/scholar/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0cec8fe71f3f994b44818f868b753afc2ca32e6
|
4
|
+
data.tar.gz: c181bfd8b43b2db0f9e9b231b1714f3267e4d5fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 619c42158d5dafca93a70f451064857058d0452e118e2fb3b76f286d5e1046d47e4ff2c82e606db77270f2a71138b4afee1b6562c5fc239e7cc381f5a79bc258
|
7
|
+
data.tar.gz: dff7bbecefa7c8a9d6c98680c7a0b4519fa294c08aaf14f28bd5db97082f067582de4ff8a0c76c97ac2e47bd764cdb56ac60a69f86050516353962838c4032be
|
data/features/details.feature
CHANGED
@@ -3,7 +3,7 @@ Feature: Details
|
|
3
3
|
I want to publish my BibTeX bibliography on my blog
|
4
4
|
And I want Jekyll to generate detail pages for all the entries in my bibliography
|
5
5
|
|
6
|
-
@generators
|
6
|
+
@generators @wip
|
7
7
|
Scenario: A bibliography with a single entry
|
8
8
|
Given I have a scholar configuration with:
|
9
9
|
| key | value |
|
@@ -16,6 +16,7 @@ Feature: Details
|
|
16
16
|
title = {The Ruby Programming Language},
|
17
17
|
author = {Flanagan, David and Matsumoto, Yukihiro},
|
18
18
|
year = {2008},
|
19
|
+
comment = {A Comment},
|
19
20
|
publisher = {O'Reilly Media}
|
20
21
|
}
|
21
22
|
"""
|
@@ -27,7 +28,8 @@ Feature: Details
|
|
27
28
|
<html>
|
28
29
|
<head></head>
|
29
30
|
<body>
|
30
|
-
{{ page.
|
31
|
+
{{ page.title }}
|
32
|
+
{{ page.entry.comment }}
|
31
33
|
</body>
|
32
34
|
</html>
|
33
35
|
"""
|
@@ -35,6 +37,7 @@ Feature: Details
|
|
35
37
|
Then the _site directory should exist
|
36
38
|
And the "_site/bibliography/ruby.html" file should exist
|
37
39
|
And I should see "The Ruby Programming Language" in "_site/bibliography/ruby.html"
|
40
|
+
And I should see "A Comment" in "_site/bibliography/ruby.html"
|
38
41
|
|
39
42
|
@generators
|
40
43
|
Scenario: LaTeX conversion is applied to everything except the bibtex field
|