Skip to content

Commit 94015e5

Browse files
committed
fix: resolve missing index.html by moving index.md to docs root
- Move index.md from pages/ to docs/ root for proper Jekyll generation - Update index.md frontmatter to have has_children: true for navigation - Remove parent references from all pages since they're now children of root index - Update Jekyll defaults to handle root-level pages properly - Ensure index.html will be generated at correct location for just-the-docs
1 parent d41cf4d commit 94015e5

10 files changed

Lines changed: 5 additions & 10 deletions

docs/_config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ timezone: UTC
109109

110110
# Default values
111111
defaults:
112+
- scope:
113+
path: ""
114+
values:
115+
layout: "default"
112116
- scope:
113117
path: ""
114118
type: "pages"
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: node-syslog
3-
has_children: false
4-
parent: Documentation
3+
has_children: true
54
nav_order: 1
65
---
76

docs/pages/api.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: API Reference
33
has_children: true
4-
parent: Documentation
54
nav_order: 4
65
---
76

docs/pages/debugging-guide.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Debugging Guide
33
has_children: false
4-
parent: Documentation
54
nav_order: 7
65
---
76

docs/pages/examples.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Examples
33
has_children: false
4-
parent: Documentation
54
nav_order: 6
65
---
76

docs/pages/getting-started.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Getting Started
33
has_children: false
4-
parent: Documentation
54
nav_order: 2
65
---
76

docs/pages/installation.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Installation Guide
33
has_children: false
4-
parent: Documentation
54
nav_order: 3
65
---
76

docs/pages/migration.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Migration Guide
33
has_children: false
4-
parent: Documentation
54
nav_order: 5
65
---
76

docs/pages/performance-summary.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Performance Summary
33
has_children: false
4-
parent: Documentation
54
nav_order: 8
65
---
76

docs/pages/test-generator.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Test Generator Tag
33
has_children: false
4-
parent: Documentation
54
nav_order: 9
65
---
76

0 commit comments

Comments
 (0)