jekyll-theme-zer0 0.18.1 → 0.18.2
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 +21 -0
- data/_data/navigation/docs.yml +76 -38
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: beaa108561f1573f5061d437d8b8b7492bb57ae536743cff1892af5d84bc0f3c
|
|
4
|
+
data.tar.gz: 0ef078c5ec18749fa0099eb9a0fead8dbe595e912c382a97bb22b865b5500cd5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16f844d9925683e3b55d573b978644f5a321ab95bf2ae62a00cd3172a8803d3af01b2bb2d225f92e8d9ed94a453c4e471df2ecef37e078bb64238383d4b81bab
|
|
7
|
+
data.tar.gz: 5331c84ff7fb64605c8b0251f93b2344ba86846c1fae300da2964d19a7ecb4c98dee732f79a54cac29d25acb436b81212fad8279c6ae3116f66bf95c28653814
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.18.2] - 2026-01-25
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- **Documentation Architecture**: Major restructure separating user documentation (`pages/_docs/`) from developer documentation (`docs/`)
|
|
7
|
+
- **Navigation**: Updated `_data/navigation/docs.yml` with new section structure
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- **User Documentation** (`pages/_docs/`):
|
|
11
|
+
- `getting-started/` - Installation guides, quick start, theme guide
|
|
12
|
+
- `features/` - Mermaid diagrams, MathJax, Giscus comments, PostHog analytics, keyboard navigation
|
|
13
|
+
- `deployment/` - GitHub Pages, Netlify, custom domain guides
|
|
14
|
+
- `customization/` - Layouts, styles, navigation customization guides
|
|
15
|
+
- **Developer Documentation** (`docs/`):
|
|
16
|
+
- `architecture/` - Project structure, layouts/includes, build system
|
|
17
|
+
- `development/` - Local setup, testing, code style guides
|
|
18
|
+
- `implementation/` - Feature implementation changelogs (renamed from `features/`)
|
|
19
|
+
|
|
20
|
+
### Removed
|
|
21
|
+
- Duplicate user-facing documentation from `docs/jekyll/` (moved to `pages/_docs/`)
|
|
22
|
+
- Legacy `docs/QUICKSTART.md` and `docs/keyboard-navigation.md` (content moved to user docs)
|
|
23
|
+
|
|
3
24
|
## [0.18.1] - 2026-01-24
|
|
4
25
|
|
|
5
26
|
### Changed
|
data/_data/navigation/docs.yml
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# Documentation Navigation Configuration
|
|
2
|
-
# Used by: Docs sidebar (nav:
|
|
3
|
-
# Purpose: Organize documentation
|
|
4
|
-
# Schema: See README.md for full documentation
|
|
2
|
+
# Used by: Docs sidebar (nav: docs)
|
|
3
|
+
# Purpose: Organize user documentation for the Zer0-Mistakes theme
|
|
5
4
|
|
|
6
5
|
# ============================================================
|
|
7
6
|
# Getting Started
|
|
@@ -15,11 +14,69 @@
|
|
|
15
14
|
url: /docs/
|
|
16
15
|
- title: Installation
|
|
17
16
|
url: /docs/installation/
|
|
18
|
-
- title:
|
|
19
|
-
url: /docs/
|
|
17
|
+
- title: Quick Start
|
|
18
|
+
url: /docs/getting-started/quick-start/
|
|
19
|
+
- title: Theme Guide
|
|
20
|
+
url: /docs/getting-started/theme-guide/
|
|
21
|
+
- title: Front Matter
|
|
22
|
+
url: /docs/front-matter/
|
|
23
|
+
|
|
24
|
+
# ============================================================
|
|
25
|
+
# Features
|
|
26
|
+
# ============================================================
|
|
27
|
+
- title: Features
|
|
28
|
+
icon: bi-stars
|
|
29
|
+
url: /docs/features/
|
|
30
|
+
children:
|
|
31
|
+
- title: Features Overview
|
|
32
|
+
url: /docs/features/
|
|
33
|
+
- title: Mermaid Diagrams
|
|
34
|
+
url: /docs/features/mermaid-diagrams/
|
|
35
|
+
- title: MathJax Math
|
|
36
|
+
url: /docs/features/mathjax-math/
|
|
37
|
+
- title: Giscus Comments
|
|
38
|
+
url: /docs/features/giscus-comments/
|
|
39
|
+
- title: PostHog Analytics
|
|
40
|
+
url: /docs/features/posthog-analytics/
|
|
41
|
+
- title: Keyboard Navigation
|
|
42
|
+
url: /docs/features/keyboard-navigation/
|
|
43
|
+
- title: Preview Images
|
|
44
|
+
url: /docs/features/preview-image-generator/
|
|
45
|
+
|
|
46
|
+
# ============================================================
|
|
47
|
+
# Customization
|
|
48
|
+
# ============================================================
|
|
49
|
+
- title: Customization
|
|
50
|
+
icon: bi-palette
|
|
51
|
+
url: /docs/customization/
|
|
52
|
+
children:
|
|
53
|
+
- title: Customization Overview
|
|
54
|
+
url: /docs/customization/
|
|
55
|
+
- title: Layouts
|
|
56
|
+
url: /docs/customization/layouts/
|
|
57
|
+
- title: Styles
|
|
58
|
+
url: /docs/customization/styles/
|
|
59
|
+
- title: Navigation
|
|
60
|
+
url: /docs/customization/navigation/
|
|
61
|
+
|
|
62
|
+
# ============================================================
|
|
63
|
+
# Deployment
|
|
64
|
+
# ============================================================
|
|
65
|
+
- title: Deployment
|
|
66
|
+
icon: bi-cloud-upload
|
|
67
|
+
url: /docs/deployment/
|
|
68
|
+
children:
|
|
69
|
+
- title: Deployment Overview
|
|
70
|
+
url: /docs/deployment/
|
|
71
|
+
- title: GitHub Pages
|
|
72
|
+
url: /docs/deployment/github-pages/
|
|
73
|
+
- title: Netlify
|
|
74
|
+
url: /docs/deployment/netlify/
|
|
75
|
+
- title: Custom Domain
|
|
76
|
+
url: /docs/deployment/custom-domain/
|
|
20
77
|
|
|
21
78
|
# ============================================================
|
|
22
|
-
#
|
|
79
|
+
# Jekyll Reference
|
|
23
80
|
# ============================================================
|
|
24
81
|
- title: Jekyll
|
|
25
82
|
icon: bi-journal-code
|
|
@@ -29,17 +86,20 @@
|
|
|
29
86
|
url: /docs/jekyll/
|
|
30
87
|
- title: Configuration
|
|
31
88
|
url: /docs/jekyll/jekyll-config/
|
|
32
|
-
- title: Front Matter
|
|
33
|
-
url: /docs/front-matter/
|
|
34
89
|
- title: Liquid Templating
|
|
35
90
|
url: /docs/jekyll/jekyll-liquid/
|
|
36
|
-
- title:
|
|
37
|
-
url: /docs/jekyll/
|
|
91
|
+
- title: Code Highlighting
|
|
92
|
+
url: /docs/jekyll/code-highlighting/
|
|
93
|
+
- title: Pagination
|
|
94
|
+
url: /docs/jekyll/pagination/
|
|
38
95
|
- title: Performance
|
|
39
96
|
url: /docs/jekyll/jekyll-performance-optimization/
|
|
40
97
|
- title: Security
|
|
41
98
|
url: /docs/jekyll/jekyll-security/
|
|
42
99
|
|
|
100
|
+
# ============================================================
|
|
101
|
+
# Other Technologies
|
|
102
|
+
# ============================================================
|
|
43
103
|
- title: Ruby & Bundler
|
|
44
104
|
icon: bi-gem
|
|
45
105
|
url: /docs/ruby/
|
|
@@ -71,33 +131,11 @@
|
|
|
71
131
|
url: /docs/bootstrap/
|
|
72
132
|
|
|
73
133
|
# ============================================================
|
|
74
|
-
#
|
|
134
|
+
# Help
|
|
75
135
|
# ============================================================
|
|
76
|
-
- title:
|
|
77
|
-
icon: bi-
|
|
78
|
-
url: /
|
|
136
|
+
- title: Help
|
|
137
|
+
icon: bi-question-circle
|
|
138
|
+
url: /docs/troubleshooting/
|
|
79
139
|
children:
|
|
80
|
-
- title:
|
|
81
|
-
url: /
|
|
82
|
-
- title: Mermaid Diagrams
|
|
83
|
-
url: /docs/jekyll/mermaid-native-markdown/
|
|
84
|
-
- title: Math with MathJax
|
|
85
|
-
url: /docs/jekyll/jekyll-math-symbols-with-mathjax/
|
|
86
|
-
- title: Preview Image Generator
|
|
87
|
-
url: /docs/features/preview-image-generator/
|
|
88
|
-
- title: Frontmatter CMS
|
|
89
|
-
url: /docs/jekyll/jekyll-frontmatter-cms/
|
|
90
|
-
|
|
91
|
-
# ============================================================
|
|
92
|
-
# Deployment
|
|
93
|
-
# ============================================================
|
|
94
|
-
- title: Deployment
|
|
95
|
-
icon: bi-cloud-upload
|
|
96
|
-
url: /quickstart/github-setup/
|
|
97
|
-
children:
|
|
98
|
-
- title: GitHub Pages
|
|
99
|
-
url: /quickstart/github-setup/
|
|
100
|
-
- title: Netlify
|
|
101
|
-
url: /docs/jekyll/deploying-jekyll-website-to-netlify/
|
|
102
|
-
- title: Custom Domain
|
|
103
|
-
url: /docs/jekyll/deploying-personal-website-with-custom-domain/
|
|
140
|
+
- title: Troubleshooting
|
|
141
|
+
url: /docs/troubleshooting/
|
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.18.
|
|
4
|
+
version: 0.18.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amr Abdel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|