just-the-docs 0.4.0.rc4 → 0.4.0.rc5

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: c8877f9fb409c496769e604fa5c53121d72234e51e7d76aed6d243588ffb8544
4
- data.tar.gz: 205a1e33b36fd961b3a8c429ba4f660a367c0272a00143888a5244e6f896e875
3
+ metadata.gz: 27c3121b1ff1760f720e64458a1943246f988a45381717153e659e7d54c700e9
4
+ data.tar.gz: 8d39c390841bd78261b1f7f9dd72576b708f3475676229b5627f83973c018f60
5
5
  SHA512:
6
- metadata.gz: 0422f4278093a39c11a7aeb437e9ccee7b7a738f706a764a61e102e456165cb78b6d0992c27ce27a74e83d99d39507fdb06cb6ee94835f9fe66b8678fa504b1a
7
- data.tar.gz: 47a66cab38cc77f7ed3cd839bc5eb93401a715639ee7c57b48418c9221c22851095812abd83ba2daaaba0097a5e8cfc97bb227cb39c3aa85618080d602757c0a
6
+ metadata.gz: 592cb6dd8830ef25db17c2f33ff2c3b0b48c3af397de959e58c64c84119d57da350ca05af2cdce8ca38ca684e60454e3a87a5b8eba934c2ba5cee0cd7da692ec
7
+ data.tar.gz: d8ebad34781d09fa15af1c5291b40a6f2c6077525ea7428af13c0230805bb98ea783335fa8e0d017b27dc97d3c2c9852435b333d472027383d9026b4326e6487
data/CHANGELOG.md CHANGED
@@ -16,12 +16,100 @@ The project underwent a major maintenance shift in March 2022.
16
16
  This website is built from the `HEAD` of the `main` branch of the theme repository.
17
17
 
18
18
  {: .warning }
19
- This website includes docs for some new features that are not available in `v0.4.0.rc4` and `v0.3.3`!
19
+ This website includes docs for some new features that are not available in `v0.4.0.rc5` and `v0.3.3`!
20
20
 
21
21
  Changes to `main` that are *not* in the latest pre-release:
22
22
 
23
23
  - n/a
24
24
 
25
+ ## Pre-release v0.4.0.rc5
26
+
27
+ Hi everyone, we're so excited to finally release `v0.4.0`! For posterity's sake, we're going to release `v0.4.0.rc5` and then immediately re-release it as `v0.4.0`; this should make it more clear what changes were introduced in the lead up to the minor release.
28
+
29
+ This RC does not introduce any major user-facing features. It adds more customizability for custom SCSS variables (fixing a bug with callout introduction order), `lunr` indexing, and loading `mermaid` locally. In addition, it fixes bugs introduced in `.rc4`: incorrect CSS, inconsistencies with code block backgrounds in dark theme, and the copy code button. It also adds a migration guide for users coming from `v0.3.3`.
30
+
31
+ ### Trying out pre-release `v0.4.0.rc5`
32
+
33
+ Simlar to the prior release, `v0.4.0.rc5` is a **release candidate** for the theme (i.e., a pre-release) with release `v0.4.0` following immediately after. While we don't anticipate many users using this RC, it is still possible to opt-in.
34
+
35
+ To use this RC explicitly as a remote theme:
36
+
37
+ ```yml
38
+ remote_theme: just-the-docs/just-the-docs@v0.4.0.rc5
39
+ ```
40
+
41
+ To use this RC explicitly as a gem-based theme, pin the version in your `Gemfile` and re-run `bundle install` or `bundle update just-the-docs`:
42
+
43
+ ```Ruby
44
+ gem "just-the-docs", "0.4.0.rc5"
45
+ ```
46
+
47
+ By default, **users will not be upgraded to `0.4.0.rc5`**. To enforce that explicitly, either:
48
+
49
+ 1. pin your gem version in your `Gemfile`, like so
50
+ ```Ruby
51
+ gem "just-the-docs", "0.3.3"
52
+ ```
53
+ 2. freeze the `remote_theme`, like so
54
+ ```yml
55
+ remote_theme: just-the-docs/just-the-docs@v0.3.3
56
+ ```
57
+
58
+ ### New Features
59
+
60
+ - Added: includes for custom `lunr` Liquid and JS code by [@diablodale] in [#1068]
61
+ - Added: new `_sass/custom/setup.scss` for variable definition by [@mattxwang] in [#1135]
62
+ - Added: configuration key to load a local version of mermaid by [@fabrik42] in [#1153]
63
+
64
+ ### Bugfixes and Maintenance
65
+
66
+ - Fixed: incorrect `padding` property value pair in `search.scss` by [@kevinlin1] in [#1123]
67
+ - Fixed: minor spacing and comment nits by [@EricFromCanada] in [#1128]
68
+ - Fixed: exclude images from being bundled with gem by [@m-r-mccormick] in [#1142]
69
+ - Fixed: dark theme code block background, line number colors by [@m-r-mccormick] in [#1124]
70
+ - Fixed: copy code button interaction with kramdown line numbers by [@mattxwang] in [#1143]
71
+
72
+ ### Docs
73
+
74
+ - Docs: add a migration guide by [@pdmosses] in [#1059]
75
+ - Docs: update `README` demo video by [@codewithfan] in [#1097]
76
+ - Docs: update "View Typography Utilities" link by [@agabrys] in [#1130]
77
+ - Docs: fix broken relative page links by [@mattxwang] in [#1106]
78
+ - Docs: clarify steps to add custom `lunr` index code by [@diablodale] in [#1139]
79
+ - Docs: label new features introduced in `v0.4` by [@mattxwang] in [#1138]
80
+
81
+ ### New Contributors
82
+
83
+ - [@kevinlin1] made their first contribution in [#1123]
84
+ - [@codewithfan] made their first contribution in [#1097]
85
+ - [@agabrys] made their first contribution in [#1130]
86
+ - [@diablodale] made their first contribution in [#1068]
87
+ - [@m-r-mccormick] made their first contribution in [#1142]
88
+ - [@fabrik42] made their first contribution in [#1153]
89
+
90
+ [#1059]: https://github.com/just-the-docs/just-the-docs/pull/1059
91
+ [#1068]: https://github.com/just-the-docs/just-the-docs/pull/1068
92
+ [#1097]: https://github.com/just-the-docs/just-the-docs/pull/1097
93
+ [#1106]: https://github.com/just-the-docs/just-the-docs/pull/1106
94
+ [#1123]: https://github.com/just-the-docs/just-the-docs/pull/1123
95
+ [#1124]: https://github.com/just-the-docs/just-the-docs/pull/1124
96
+ [#1128]: https://github.com/just-the-docs/just-the-docs/pull/1128
97
+ [#1130]: https://github.com/just-the-docs/just-the-docs/pull/1130
98
+ [#1135]: https://github.com/just-the-docs/just-the-docs/pull/1135
99
+ [#1138]: https://github.com/just-the-docs/just-the-docs/pull/1138
100
+ [#1139]: https://github.com/just-the-docs/just-the-docs/pull/1139
101
+ [#1142]: https://github.com/just-the-docs/just-the-docs/pull/1142
102
+ [#1143]: https://github.com/just-the-docs/just-the-docs/pull/1143
103
+ [#1153]: https://github.com/just-the-docs/just-the-docs/pull/1153
104
+
105
+ [@agabrys]: https://github.com/agabrys
106
+ [@codewithfan]: https://github.com/codewithfan
107
+ [@diablodale]: https://github.com/diablodale
108
+ [@fabrik42]: https://github.com/fabrik42
109
+ [@kevinlin1]: https://github.com/kevinlin1
110
+ [@EricFromCanada]: https://github.com/EricFromCanada
111
+ [@m-r-mccormick]: https://github.com/m-r-mccormick
112
+
25
113
  ## Pre-release v0.4.0.rc4
26
114
 
27
115
  Happy new year! We're celebrating with another pre-release, with features that should help theme users better adapt to changes moving forward. **We aim to re-release this as `v0.4.0`, with only few changes**.
data/README.md CHANGED
@@ -9,7 +9,9 @@
9
9
  <br><br><br>
10
10
  </p>
11
11
 
12
- ![jtd](https://user-images.githubusercontent.com/896475/47384541-89053c80-d6d5-11e8-98dc-dba16e192de9.gif)
12
+ <p align="center">A video walkthrough of various Just the Docs features</p>
13
+
14
+ https://user-images.githubusercontent.com/85418632/211225192-7e5d1116-2f4f-4305-bb9b-437fe47df071.mp4
13
15
 
14
16
  ## Installation
15
17
 
@@ -7,10 +7,10 @@
7
7
  </div>
8
8
  <nav aria-label="Main" id="site-nav" class="site-nav">
9
9
  {% assign pages_top_size = site.html_pages
10
- | where_exp:"item", "item.title != nil"
11
- | where_exp:"item", "item.parent == nil"
12
- | where_exp:"item", "item.nav_exclude != true"
13
- | size %}
10
+ | where_exp:"item", "item.title != nil"
11
+ | where_exp:"item", "item.parent == nil"
12
+ | where_exp:"item", "item.nav_exclude != true"
13
+ | size %}
14
14
  {% if pages_top_size > 0 %}
15
15
  {% include nav.html pages=site.html_pages key=nil %}
16
16
  {% endif %}
@@ -2,6 +2,7 @@
2
2
  $logo: "{{ site.logo | relative_url }}";
3
3
  {% endif %}
4
4
  @import "./support/support";
5
+ @import "./custom/setup";
5
6
  @import "./color_schemes/light";
6
7
  @import "./color_schemes/{{ include.color_scheme }}";
7
8
  @import "./modules";
data/_includes/head.html CHANGED
@@ -23,13 +23,17 @@
23
23
  {% endif %}
24
24
 
25
25
  {% if site.mermaid %}
26
- <script src="https://cdn.jsdelivr.net/npm/mermaid@{{ site.mermaid.version }}/dist/mermaid.min.js"></script>
26
+ {% if site.mermaid.path %}
27
+ <script src="{{ site.mermaid.path | relative_url }}"></script>
28
+ {% else %}
29
+ <script src="https://cdn.jsdelivr.net/npm/mermaid@{{ site.mermaid.version }}/dist/mermaid.min.js"></script>
30
+ {% endif %}
27
31
  {% endif %}
28
32
 
29
33
  <script src="{{ '/assets/js/just-the-docs.js' | relative_url }}"></script>
30
34
 
31
35
  <meta name="viewport" content="width=device-width, initial-scale=1">
32
-
36
+
33
37
  {% for file in site.static_files %}
34
38
  {% if file.path == site.favicon_ico or file.path == '/favicon.ico' %}
35
39
  {% assign favicon = true %}
@@ -1,4 +1,4 @@
1
- <!-- Feather. MIT License: https://github.com/twbs/icons/blob/main/LICENSE.md -->
1
+ <!-- Bootstrap Icons. MIT License: https://github.com/twbs/icons/blob/main/LICENSE.md -->
2
2
  <symbol id="svg-copy" viewBox="0 0 16 16">
3
3
  <title>Copy</title>
4
4
  <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-clipboard" viewBox="0 0 16 16">
File without changes
File without changes
data/_includes/nav.html CHANGED
@@ -58,7 +58,7 @@
58
58
  {%- endunless -%}
59
59
 
60
60
  {%- assign nav_order_pages = title_pages
61
- | where_exp: "item", "item.nav_order != nil" -%}
61
+ | where_exp: "item", "item.nav_order != nil" -%}
62
62
  {%- assign title_order_pages = title_pages
63
63
  | where_exp: "item", "item.nav_order == nil" -%}
64
64
 
@@ -174,7 +174,7 @@
174
174
  {%- if node.child_nav_order == 'desc' or node.child_nav_order == 'reversed' -%}
175
175
  {%- assign children_list = children_list | reverse -%}
176
176
  {%- endif -%}
177
- <ul class="nav-list ">
177
+ <ul class="nav-list">
178
178
  {%- for child in children_list -%}
179
179
  {%- unless child.nav_exclude -%}
180
180
  <li class="nav-list-item {% if page.url == child.url or page.parent == child.title %} active{% endif %}">
@@ -16,10 +16,10 @@ layout: table_wrappers
16
16
  {% endcomment %}
17
17
  {% capture nav %}
18
18
  {% assign pages_top_size = site.html_pages
19
- | where_exp:"item", "item.title != nil"
20
- | where_exp:"item", "item.parent == nil"
21
- | where_exp:"item", "item.nav_exclude != true"
22
- | size %}
19
+ | where_exp:"item", "item.title != nil"
20
+ | where_exp:"item", "item.parent == nil"
21
+ | where_exp:"item", "item.nav_exclude != true"
22
+ | size %}
23
23
  {% if pages_top_size > 0 %}
24
24
  {% include nav.html pages=site.html_pages key=nil %}
25
25
  {% endif %}
data/_sass/code.scss CHANGED
@@ -207,4 +207,21 @@ code.language-mermaid {
207
207
  border: 0;
208
208
  }
209
209
 
210
+ // Override OneDarkJekyll Colors for Code Blocks
211
+ .highlight,
212
+ pre.highlight {
213
+ background: $code-background-color; // Code Background
214
+ // For Backwards Compatibility Before $code-linenumber-color was added
215
+ @if variable-exists(code-linenumber-color) {
216
+ color: $code-linenumber-color; // Code Line Numbers
217
+ } @else {
218
+ color: $body-text-color; // Code Line Numbers
219
+ }
220
+ }
221
+
222
+ // Override OneDarkJekyll Colors for Code Blocks
223
+ .highlight pre {
224
+ background: $code-background-color; // Code Background
225
+ }
226
+
210
227
  // {% endraw %}
@@ -15,14 +15,18 @@ $feedback-color: darken($sidebar-color, 3%);
15
15
  // The following highlight theme is more legible than that used for the light color scheme
16
16
 
17
17
  // @import "./vendor/OneDarkJekyll/syntax-one-dark";
18
- // $code-background-color: #282c34;
18
+ // $code-background-color: #282c34; // OneDarkJekyll default for syntax-one-dark
19
+ // $code-linenumber-color: #abb2bf; // OneDarkJekyll .nf for syntax-one-dark
19
20
 
20
21
  @import "./vendor/OneDarkJekyll/syntax-one-dark-vivid";
21
22
 
22
- $code-background-color: #31343f;
23
+ $code-background-color: #31343f; // OneDarkJekyll default for syntax-one-dark-vivid
24
+ $code-linenumber-color: #dee2f7; // OneDarkJekyll .nf for syntax-one-dark-vivid
23
25
 
24
26
  // @import "./vendor/OneDarkJekyll/syntax-firewatch";
25
- // $code-background-color: #282c34;
27
+ // $code-background-color: #282c34; // OneDarkJekyll default for syntax-firewatch
28
+ // $code-linenumber-color: #abb2bf; // OneDarkJekyll .nf for syntax-firewatch
26
29
 
27
30
  // @import "./vendor/OneDarkJekyll/syntax-firewatch-green";
28
- // $code-background-color: #282c34;
31
+ // $code-background-color: #282c34; // OneDarkJekyll default for syntax-firewatch-green
32
+ // $code-linenumber-color: #abb2bf; // OneDarkJekyll .nf for syntax-firewatch-green
@@ -1,4 +1 @@
1
- $pink-000: #f77ef1;
2
- $pink-100: #f967f1;
3
- $pink-200: #e94ee1;
4
- $pink-300: #dd2cd4;
1
+ // custom SCSS (or CSS) goes here
@@ -0,0 +1 @@
1
+ // custom setup code goes here
data/_sass/search.scss CHANGED
@@ -123,7 +123,7 @@
123
123
 
124
124
  .search-result {
125
125
  display: block;
126
- padding-top: $sp-1 $sp-3;
126
+ padding: $sp-1 $sp-3;
127
127
 
128
128
  &:hover,
129
129
  &.active {
@@ -1,5 +1,4 @@
1
1
  // Typography
2
-
3
2
  // stylelint-disable selector-no-type, selector-max-type, selector-max-specificity, selector-max-id
4
3
 
5
4
  h1,
@@ -87,6 +87,7 @@ function initSearch() {
87
87
  this.metadataWhitelist = ['position']
88
88
 
89
89
  for (var i in docs) {
90
+ {% include lunr/custom-index.js %}
90
91
  this.add({
91
92
  id: i,
92
93
  title: docs[i].title,
@@ -503,7 +504,7 @@ jtd.onReady(function(){
503
504
 
504
505
  copyButton.addEventListener('click', function () {
505
506
  if(timeout === null) {
506
- var code = codeBlock.querySelector('pre:not(.lineno)').innerText;
507
+ var code = (codeBlock.querySelector('pre:not(.lineno, .highlight)') || codeBlock.querySelector('code')).innerText;
507
508
  window.navigator.clipboard.writeText(code);
508
509
 
509
510
  copyButton.innerHTML = svgCopied;
@@ -51,6 +51,7 @@ permalink: /assets/js/search-data.json
51
51
  "title": {{ title | jsonify }},
52
52
  "content": {{ content | replace: '</h', ' . </h' | replace: '<hr', ' . <hr' | replace: '</p', ' . </p' | replace: '<ul', ' . <ul' | replace: '</ul', ' . </ul' | replace: '<ol', ' . <ol' | replace: '</ol', ' . </ol' | replace: '</tr', ' . </tr' | replace: '<li', ' | <li' | replace: '</li', ' | </li' | replace: '</td', ' | </td' | replace: '<td', ' | <td' | replace: '</th', ' | </th' | replace: '<th', ' | <th' | strip_html | remove: 'Table of contents' | normalize_whitespace | replace: '. . .', '.' | replace: '. .', '.' | replace: '| |', '|' | append: ' ' | jsonify }},
53
53
  "url": "{{ url | relative_url }}",
54
+ {% include lunr/custom-data.json page=page %}
54
55
  "relUrl": "{{ url }}"
55
56
  }
56
57
  {%- assign i = i | plus: 1 -%}
@@ -62,6 +63,7 @@ permalink: /assets/js/search-data.json
62
63
  "title": {{ page.title | jsonify }},
63
64
  "content": {{ parts[0] | replace: '</h', ' . </h' | replace: '<hr', ' . <hr' | replace: '</p', ' . </p' | replace: '<ul', ' . <ul' | replace: '</ul', ' . </ul' | replace: '<ol', ' . <ol' | replace: '</ol', ' . </ol' | replace: '</tr', ' . </tr' | replace: '<li', ' | <li' | replace: '</li', ' | </li' | replace: '</td', ' | </td' | replace: '<td', ' | <td' | replace: '</th', ' | </th' | replace: '<th', ' | <th' | strip_html | remove: 'Table of contents' | normalize_whitespace | replace: '. . .', '.' | replace: '. .', '.' | replace: '| |', '|' | append: ' ' | jsonify }},
64
65
  "url": "{{ page.url | relative_url }}",
66
+ {% include lunr/custom-data.json page=page %}
65
67
  "relUrl": "{{ page.url }}"
66
68
  }
67
69
  {%- assign i = i | plus: 1 -%}
@@ -61,6 +61,7 @@ permalink: /assets/js/search-data.json
61
61
  "title": {{ title | jsonify }},
62
62
  "content": {{ content | replace: \'</h\', \' . </h\' | replace: \'<hr\', \' . <hr\' | replace: \'</p\', \' . </p\' | replace: \'<ul\', \' . <ul\' | replace: \'</ul\', \' . </ul\' | replace: \'<ol\', \' . <ol\' | replace: \'</ol\', \' . </ol\' | replace: \'</tr\', \' . </tr\' | replace: \'<li\', \' | <li\' | replace: \'</li\', \' | </li\' | replace: \'</td\', \' | </td\' | replace: \'<td\', \' | <td\' | replace: \'</th\', \' | </th\' | replace: \'<th\', \' | <th\' | strip_html | remove: \'Table of contents\' | normalize_whitespace | replace: \'. . .\', \'.\' | replace: \'. .\', \'.\' | replace: \'| |\', \'|\' | append: \' \' | jsonify }},
63
63
  "url": "{{ url | relative_url }}",
64
+ {% include lunr/custom-data.json page=page %}
64
65
  "relUrl": "{{ url }}"
65
66
  }
66
67
  {%- assign i = i | plus: 1 -%}
@@ -72,6 +73,7 @@ permalink: /assets/js/search-data.json
72
73
  "title": {{ page.title | jsonify }},
73
74
  "content": {{ parts[0] | replace: \'</h\', \' . </h\' | replace: \'<hr\', \' . <hr\' | replace: \'</p\', \' . </p\' | replace: \'<ul\', \' . <ul\' | replace: \'</ul\', \' . </ul\' | replace: \'<ol\', \' . <ol\' | replace: \'</ol\', \' . </ol\' | replace: \'</tr\', \' . </tr\' | replace: \'<li\', \' | <li\' | replace: \'</li\', \' | </li\' | replace: \'</td\', \' | </td\' | replace: \'<td\', \' | <td\' | replace: \'</th\', \' | </th\' | replace: \'<th\', \' | <th\' | strip_html | remove: \'Table of contents\' | normalize_whitespace | replace: \'. . .\', \'.\' | replace: \'. .\', \'.\' | replace: \'| |\', \'|\' | append: \' \' | jsonify }},
74
75
  "url": "{{ page.url | relative_url }}",
76
+ {% include lunr/custom-data.json page=page %}
75
77
  "relUrl": "{{ page.url }}"
76
78
  }
77
79
  {%- assign i = i | plus: 1 -%}
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: just-the-docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0.rc4
4
+ version: 0.4.0.rc5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Marsceill
8
8
  - Matthew Wang
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-01-08 00:00:00.000000000 Z
12
+ date: 2023-02-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -67,7 +67,7 @@ dependencies:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
69
  version: 12.3.1
70
- description:
70
+ description:
71
71
  email:
72
72
  - patrick.marsceill@gmail.com
73
73
  - matt@matthewwang.me
@@ -106,6 +106,8 @@ files:
106
106
  - _includes/icons/menu.html
107
107
  - _includes/icons/search.html
108
108
  - _includes/js/custom.js
109
+ - _includes/lunr/custom-data.json
110
+ - _includes/lunr/custom-index.js
109
111
  - _includes/mermaid_config.js
110
112
  - _includes/nav.html
111
113
  - _includes/nav_footer_custom.html
@@ -128,6 +130,7 @@ files:
128
130
  - _sass/color_schemes/light.scss
129
131
  - _sass/content.scss
130
132
  - _sass/custom/custom.scss
133
+ - _sass/custom/setup.scss
131
134
  - _sass/labels.scss
132
135
  - _sass/layout.scss
133
136
  - _sass/modules.scss
@@ -164,10 +167,7 @@ files:
164
167
  - assets/css/just-the-docs-dark.scss
165
168
  - assets/css/just-the-docs-default.scss
166
169
  - assets/css/just-the-docs-light.scss
167
- - assets/images/just-the-docs.png
168
- - assets/images/large-image.jpg
169
170
  - assets/images/search.svg
170
- - assets/images/small-image.jpg
171
171
  - assets/js/just-the-docs.js
172
172
  - assets/js/vendor/lunr.min.js
173
173
  - assets/js/zzzz-search-data.json
@@ -182,7 +182,7 @@ metadata:
182
182
  changelog_uri: https://github.com/just-the-docs/just-the-docs/blob/main/CHANGELOG.md
183
183
  documentation_uri: https://just-the-docs.github.io/just-the-docs/
184
184
  source_code_uri: https://github.com/just-the-docs/just-the-docs
185
- post_install_message:
185
+ post_install_message:
186
186
  rdoc_options: []
187
187
  require_paths:
188
188
  - lib
@@ -197,9 +197,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
197
197
  - !ruby/object:Gem::Version
198
198
  version: 1.3.1
199
199
  requirements: []
200
- rubygems_version: 3.3.26
201
- signing_key:
200
+ rubygems_version: 3.3.7
201
+ signing_key:
202
202
  specification_version: 4
203
- summary: A modern, highly customizable, and responsive Jekyll theme for documention
203
+ summary: A modern, highly customizable, and responsive Jekyll theme for documentation
204
204
  with built-in search.
205
205
  test_files: []
Binary file
Binary file
Binary file