jekyll-theme-zer0 0.17.0 → 0.18.0
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/CHANGELOG.md +74 -0
- data/README.md +1 -1
- data/_includes/components/cookie-consent.html +81 -9
- data/_includes/components/js-cdn.html +4 -1
- data/_includes/components/mermaid.html +260 -14
- data/_includes/components/search-modal.html +56 -0
- data/_includes/core/branding.html +12 -13
- data/_includes/core/head.html +1 -0
- data/_includes/core/header.html +38 -11
- data/_includes/navigation/navbar.html +31 -0
- data/_layouts/landing.html +21 -21
- data/_layouts/root.html +3 -0
- data/_sass/core/code-copy.scss +45 -6
- data/_sass/custom.scss +620 -1
- data/assets/js/code-copy.js +79 -13
- data/assets/js/modules/navigation/keyboard.js +9 -2
- data/assets/js/search-modal.js +239 -0
- data/assets/js/ui-enhancements.js +164 -0
- data/scripts/init_setup.sh +544 -0
- data/scripts/test-notebook-conversion.sh +105 -0
- metadata +11 -6
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-zer0
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.18.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amr Abdel
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -112,6 +112,7 @@ files:
|
|
|
112
112
|
- _includes/components/powered-by.html
|
|
113
113
|
- _includes/components/preview-image.html
|
|
114
114
|
- _includes/components/quick-index.html
|
|
115
|
+
- _includes/components/search-modal.html
|
|
115
116
|
- _includes/components/searchbar.html
|
|
116
117
|
- _includes/components/svg.html
|
|
117
118
|
- _includes/components/theme-info.html
|
|
@@ -218,7 +219,9 @@ files:
|
|
|
218
219
|
- assets/js/nanobar.min.js
|
|
219
220
|
- assets/js/particles-source.js
|
|
220
221
|
- assets/js/particles.js
|
|
222
|
+
- assets/js/search-modal.js
|
|
221
223
|
- assets/js/side-bar-folders.js
|
|
224
|
+
- assets/js/ui-enhancements.js
|
|
222
225
|
- assets/particles.json
|
|
223
226
|
- scripts/README.md
|
|
224
227
|
- scripts/analyze-commits.sh
|
|
@@ -233,6 +236,7 @@ files:
|
|
|
233
236
|
- scripts/features/validate_preview_urls.py
|
|
234
237
|
- scripts/fix-markdown-format.sh
|
|
235
238
|
- scripts/generate-preview-images.sh
|
|
239
|
+
- scripts/init_setup.sh
|
|
236
240
|
- scripts/install-preview-generator.sh
|
|
237
241
|
- scripts/lib/README.md
|
|
238
242
|
- scripts/lib/changelog.sh
|
|
@@ -247,6 +251,7 @@ files:
|
|
|
247
251
|
- scripts/setup.sh
|
|
248
252
|
- scripts/test-auto-version.sh
|
|
249
253
|
- scripts/test-mermaid.sh
|
|
254
|
+
- scripts/test-notebook-conversion.sh
|
|
250
255
|
- scripts/test.sh
|
|
251
256
|
- scripts/test/integration/auto-version
|
|
252
257
|
- scripts/test/integration/mermaid
|
|
@@ -271,7 +276,7 @@ metadata:
|
|
|
271
276
|
changelog_uri: https://github.com/bamr87/zer0-mistakes/blob/main/CHANGELOG.md
|
|
272
277
|
documentation_uri: https://github.com/bamr87/zer0-mistakes#readme
|
|
273
278
|
allowed_push_host: https://rubygems.org
|
|
274
|
-
post_install_message:
|
|
279
|
+
post_install_message:
|
|
275
280
|
rdoc_options: []
|
|
276
281
|
require_paths:
|
|
277
282
|
- lib
|
|
@@ -286,8 +291,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
286
291
|
- !ruby/object:Gem::Version
|
|
287
292
|
version: '0'
|
|
288
293
|
requirements: []
|
|
289
|
-
rubygems_version: 3.
|
|
290
|
-
signing_key:
|
|
294
|
+
rubygems_version: 3.5.22
|
|
295
|
+
signing_key:
|
|
291
296
|
specification_version: 4
|
|
292
297
|
summary: Jekyll theme based on bootstrap and compatible with github pages
|
|
293
298
|
test_files: []
|