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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fef1b2aacdcd467ce68b13c0eee29469c04ccd19b1b410f4a7dbcc119cc1cf51
4
- data.tar.gz: 8e4b467aea3ae18d11cc597613fd37ffacfb6140c37de07b47ce89caacd93c84
3
+ metadata.gz: 0d7221bfe0e886cc3553b4c60d18bc24ab9b7e5ca59690119c8c7d5ce6bea9b2
4
+ data.tar.gz: a940179d74607251a8fd40a527f630c921c400bf7b91fb593d74bdbace2cb268
5
5
  SHA512:
6
- metadata.gz: 7db554bbef380f41dc50834f9f6c420d57226db37f4e9d885e6af8809a9d93365ac4374de892273063797842bce849781bef940525fbae04c7881e0b4d96f577
7
- data.tar.gz: d459db4100ae670ce2b6bbbf4b879acb8a2edbb9290f8db10cbf7856f0e3c1d0b3857127178934d3c3541203eeb6c3eeb00b35993edc13e7d0971c97241302b1
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`
@@ -9,12 +9,7 @@
9
9
 
10
10
  {{ content }}
11
11
 
12
- {% if page.layout != 'index' -%}
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>
@@ -0,0 +1,5 @@
1
+ {% if page.layout != 'index' -%}
2
+ <footer>
3
+ <p class="signoff"><a href="{{ site.baseurl }}/">← Return home</a></p>
4
+ </footer>
5
+ {% endif -%}
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)) 0;
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.2
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-10 00:00:00.000000000 Z
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