pandoc-markdown-jekyll-theme 0.9.2 → 0.9.6
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 +1 -0
- data/_includes/default.html +1 -6
- data/_includes/footer.html +5 -0
- data/_includes/head.html +2 -0
- data/assets/css/theme.css +3 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d7221bfe0e886cc3553b4c60d18bc24ab9b7e5ca59690119c8c7d5ce6bea9b2
|
|
4
|
+
data.tar.gz: a940179d74607251a8fd40a527f630c921c400bf7b91fb593d74bdbace2cb268
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43f82edb328bc1e0c3e476785969b4e1a333681742631a74fe11828c64aa2b374feda3ab393f911066ae9be7b18190e38adc5eaafdaec07a685929217b0da81c
|
|
7
|
+
data.tar.gz: f75092b564900d1b38aa8a1930e16557160159e705199cac03f5ad5c846bbf6b5d1611757ef0e43ecbaf232267cc5638cc6f632a1589af16d32c677acf17f390
|
data/README.md
CHANGED
|
@@ -96,6 +96,7 @@ The following variables are used by this theme.
|
|
|
96
96
|
- `index` won't have a "Return home" link at the bottom of the page
|
|
97
97
|
- `page.subtitle`
|
|
98
98
|
- Shows up in the page.
|
|
99
|
+
- `site.description`
|
|
99
100
|
- `page.description`
|
|
100
101
|
- Only shows up in the `<head>` section, as a `<meta>` tag.
|
|
101
102
|
- `page.date`
|
data/_includes/default.html
CHANGED
|
@@ -9,12 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
{{ content }}
|
|
11
11
|
|
|
12
|
-
{%
|
|
13
|
-
<footer>
|
|
14
|
-
<p class="signoff"><a href="{{ site.baseurl }}/">← Return home</a></p>
|
|
15
|
-
</footer>
|
|
16
|
-
{% endif -%}
|
|
17
|
-
|
|
12
|
+
{% include footer.html %}
|
|
18
13
|
{% include enable_checkboxes.html %}
|
|
19
14
|
{% include after.html %}
|
|
20
15
|
</body>
|
data/_includes/head.html
CHANGED
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
{% endif -%}
|
|
15
15
|
{% if page.description -%}
|
|
16
16
|
<meta name="description" content="{{ page.description }}">
|
|
17
|
+
{% elsif site.description -%}
|
|
18
|
+
<meta name="description" content="{{ site.description }}">
|
|
17
19
|
{% endif -%}
|
|
18
20
|
<title>{{ page.title }}{% if site.title %} – {{ site.title }}{% endif %}</title>
|
|
19
21
|
|
data/assets/css/theme.css
CHANGED
|
@@ -168,6 +168,7 @@ nav#TOC label,
|
|
|
168
168
|
label.margin-toggle:not(.sidenote-number),
|
|
169
169
|
.sidenote-number:after,
|
|
170
170
|
.sidenote:before,
|
|
171
|
+
.footnote-ref sup,
|
|
171
172
|
sup {
|
|
172
173
|
font-size: var(--side-note-font-size);
|
|
173
174
|
font-weight: 700;
|
|
@@ -393,7 +394,8 @@ span.mark.purple, mark.purple { background-color: var(--highlight-purple); }
|
|
|
393
394
|
margin-bottom: 0;
|
|
394
395
|
}
|
|
395
396
|
.signoff {
|
|
396
|
-
margin: calc(4 * var(--line-height))
|
|
397
|
+
margin-top: calc(4 * var(--line-height));
|
|
398
|
+
margin-bottom: calc(4 * var(--line-height));
|
|
397
399
|
}
|
|
398
400
|
|
|
399
401
|
/* Pandoc utility classes */
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pandoc-markdown-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jake Zimmerman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-07-
|
|
11
|
+
date: 2021-07-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll-pandoc
|
|
@@ -78,6 +78,7 @@ files:
|
|
|
78
78
|
- _includes/before.html
|
|
79
79
|
- _includes/default.html
|
|
80
80
|
- _includes/enable_checkboxes.html
|
|
81
|
+
- _includes/footer.html
|
|
81
82
|
- _includes/head.html
|
|
82
83
|
- _includes/header.html
|
|
83
84
|
- _includes/math.html
|