jekyll-footnotes 0.5.0 → 0.5.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/README.md +2 -1
- data/lib/jekyll/footnotes.rb +1 -1
- data/lib/jekyll/footnotes/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: 1d50491e41f94d6ff66b345252df6a3d6cfd5ca1
|
|
4
|
+
data.tar.gz: db86041cc3d19b5e4060718339c6186c5cf15673
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83e20bdb557f484044395272ae1ad80ca6db5e95d687aeb4a1eb8360f92868b6d068a69210316c6d18febd8ca7a15bddf9efb9049bd8b7ad4c7d10406ebd2815
|
|
7
|
+
data.tar.gz: 4ab0ff63eb6d4f4df215b46e0f4dd4fa409e8ab956d888ae71e621a3db5b6b99c40be3984a4c29f86f59e75958e971ef05f212a103bb6e9892ae8fc11a20707b
|
data/README.md
CHANGED
|
@@ -8,7 +8,8 @@ easy reading.
|
|
|
8
8
|
## Install
|
|
9
9
|
|
|
10
10
|
* Include "jekyll-footnotes" in your Gemfile, or install the gem
|
|
11
|
-
* Add "jekyll
|
|
11
|
+
* Add "jekyll/footnotes to the plugins section of \_config.yml *Note:
|
|
12
|
+
jekyll-footnotes won't work.* be sure to use the backslash.
|
|
12
13
|
|
|
13
14
|
## Automatic numbering
|
|
14
15
|
hello{% fn %} world{% fn %}
|
data/lib/jekyll/footnotes.rb
CHANGED
|
@@ -33,7 +33,7 @@ module Jekyll
|
|
|
33
33
|
end
|
|
34
34
|
context.stack do
|
|
35
35
|
body = super
|
|
36
|
-
"<li id=\"fn:#{@id}\" class=\"footnotebody\"value=\"#{@id}\">#{body}<a href=\"#fn-back:#{@id}\" class=\"backlink\">⏎</a></li>"
|
|
36
|
+
"<li id=\"fn:#{@id}\" class=\"footnotebody\" value=\"#{@id}\">#{body}<a href=\"#fn-back:#{@id}\" class=\"backlink\">⏎</a></li>"
|
|
37
37
|
end
|
|
38
38
|
end
|
|
39
39
|
end
|