@knowcode/doc-builder 1.9.18 → 1.9.19

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.
Files changed (51) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +2 -1
  3. package/assets/js/main.js +43 -21
  4. package/doc-builder.config.js +1 -1
  5. package/doc-builder.config.js.backup.1754218469785 +124 -0
  6. package/html/README.html +6 -7
  7. package/html/about-doc-builder.html +7 -8
  8. package/html/documentation-index.html +6 -7
  9. package/html/guides/authentication-default-change.html +6 -7
  10. package/html/guides/authentication-guide.html +6 -7
  11. package/html/guides/claude-workflow-guide.html +6 -7
  12. package/html/guides/configuration-guide.html +30 -8
  13. package/html/guides/documentation-standards.html +6 -7
  14. package/html/guides/html-embedding-guide.html +6 -7
  15. package/html/guides/image-modal-guide.html +6 -7
  16. package/html/guides/phosphor-icons-guide.html +6 -7
  17. package/html/guides/private-directory-authentication-troubleshooting.html +6 -7
  18. package/html/guides/private-directory-authentication.html +6 -7
  19. package/html/guides/public-site-deployment.html +6 -7
  20. package/html/guides/search-engine-verification-guide.html +6 -7
  21. package/html/guides/seo-guide.html +6 -7
  22. package/html/guides/seo-optimization-guide.html +6 -7
  23. package/html/guides/supabase-authentication-complete-guide.html +6 -7
  24. package/html/guides/troubleshooting-guide.html +6 -7
  25. package/html/guides/windows-setup-guide.html +6 -7
  26. package/html/image-modal-test.html +6 -7
  27. package/html/index.html +6 -7
  28. package/html/js/main.js +43 -21
  29. package/html/private/cache-control-anti-pattern.html +6 -7
  30. package/html/private/launch/README.html +6 -7
  31. package/html/private/launch/auth-cleanup-summary.html +6 -7
  32. package/html/private/launch/bubble-plugin-specification.html +6 -7
  33. package/html/private/launch/go-to-market-strategy.html +6 -7
  34. package/html/private/launch/launch-announcements.html +6 -7
  35. package/html/private/launch/vercel-deployment-auth-setup.html +6 -7
  36. package/html/private/next-steps-walkthrough.html +6 -7
  37. package/html/private/supabase-auth-implementation-completed.html +6 -7
  38. package/html/private/supabase-auth-implementation-plan.html +6 -7
  39. package/html/private/supabase-auth-integration-plan.html +6 -7
  40. package/html/private/supabase-auth-setup-guide.html +6 -7
  41. package/html/private/test-private-doc.html +6 -7
  42. package/html/private/user-management-tooling.html +6 -7
  43. package/html/prompts/Screenshot 2025-08-02 at 08.49.55.png +0 -0
  44. package/html/prompts/beautiful-documentation-design.html +6 -7
  45. package/html/prompts/markdown-document-standards.html +6 -7
  46. package/html/prompts/project-rename-strategy-sasha-publish.html +6 -7
  47. package/html/sitemap.xml +56 -62
  48. package/html/vercel-cli-setup-guide.html +6 -7
  49. package/html/vercel-first-time-setup-guide.html +6 -7
  50. package/lib/core-builder.js +18 -3
  51. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,25 @@ All notable changes to @knowcode/doc-builder will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.9.18] - 2025-08-02
9
+
10
+ ### Added
11
+ - **Enhanced Mermaid Styling** - Diagrams now feature rounded corners (8px radius) for a more polished appearance
12
+ - **Notion-Inspired Themes** - Custom color palettes for both light and dark modes that integrate seamlessly with the overall design
13
+ - **Configurable Enhancement** - New `mermaidEnhanced` configuration option to enable/disable enhanced styling (default: true)
14
+ - **Improved Typography** - Better spacing, margins, and font consistency in Mermaid diagrams
15
+ - **Theme Transition Support** - Smooth transitions when switching between light and dark modes
16
+
17
+ ### Fixed
18
+ - **JavaScript Initialization** - Resolved banner element null reference error that was preventing Mermaid diagrams from rendering
19
+ - **CSS Specificity** - Enhanced CSS selectors to ensure rounded corner styling is properly applied
20
+ - **Debugging Support** - Added comprehensive logging for troubleshooting Mermaid configuration issues
21
+
22
+ ### Technical
23
+ - Enhanced `configureMermaidTheme()` function with custom theme variables
24
+ - Added conditional CSS styling using `[data-mermaid-enhanced="true"]` selector
25
+ - Improved error handling for missing DOM elements during initialization
26
+
8
27
  ## [1.9.2] - 2025-07-28
9
28
 
10
29
  ### Added
package/README.md CHANGED
@@ -74,7 +74,7 @@ This aligns perfectly with our mission: beautiful documentation should be access
74
74
  ### 🎯 Advanced Features
75
75
  - 🔍 **SEO Optimized** - Meta tags & structured data
76
76
  - 🔐 **Optional Auth** - Supabase authentication (opt-in)
77
- - 📊 **Mermaid Diagrams** - Built-in diagram support
77
+ - 📊 **Mermaid Diagrams** - Enhanced styling with rounded corners & Notion-inspired themes
78
78
  - 🖼️ **Image Modals** - Click any image for full-screen view
79
79
  - 🌙 **Dark Mode** - Automatic theme switching
80
80
  - ☁️ **Vercel Deploy** - One-command deployment
@@ -217,6 +217,7 @@ module.exports = {
217
217
  authentication: 'supabase', // or false for no auth
218
218
  changelog: true,
219
219
  mermaid: true,
220
+ mermaidEnhanced: true, // Enhanced styling with rounded corners
220
221
  darkMode: true,
221
222
  attachments: true // Copy PDFs, Excel files, etc. (default: true)
222
223
  },
package/assets/js/main.js CHANGED
@@ -53,7 +53,6 @@ document.addEventListener('DOMContentLoaded', function() {
53
53
  });
54
54
 
55
55
  // Initialize Mermaid Full Screen Functionality
56
- console.log('[Mermaid] DOMContentLoaded fired, calling initializeMermaidFullScreen...');
57
56
  initializeMermaidFullScreen();
58
57
  });
59
58
 
@@ -131,38 +130,18 @@ function configureMermaidTheme() {
131
130
 
132
131
  // Manually render all mermaid diagrams after configuration
133
132
  setTimeout(() => {
134
- console.log('[Mermaid] Running mermaid.run() with config:', mermaidConfig);
135
- console.log('[Mermaid] Enhanced styling enabled:', enhancedStyling);
136
- console.log('[Mermaid] Data attribute set to:', document.documentElement.getAttribute('data-mermaid-enhanced'));
137
133
  mermaid.run();
138
-
139
- // After rendering, log some debug info
140
- setTimeout(() => {
141
- const diagrams = document.querySelectorAll('.mermaid svg');
142
- console.log('[Mermaid] Found', diagrams.length, 'rendered diagrams');
143
-
144
- const firstRect = document.querySelector('.mermaid svg rect');
145
- if (firstRect) {
146
- console.log('[Mermaid] First rect element:', firstRect);
147
- console.log('[Mermaid] Rect rx value:', firstRect.getAttribute('rx'));
148
- console.log('[Mermaid] Computed styles:', window.getComputedStyle(firstRect));
149
- }
150
- }, 500);
151
134
  }, 100);
152
135
  }
153
136
 
154
137
  // Mermaid Full Screen Viewer
155
138
  function initializeMermaidFullScreen() {
156
- console.log('[Mermaid] initializeMermaidFullScreen() called');
157
-
158
139
  // Wait for Mermaid to initialize
159
140
  if (typeof mermaid === 'undefined') {
160
- console.log('[Mermaid] Mermaid not available yet, retrying in 100ms...');
161
141
  setTimeout(initializeMermaidFullScreen, 100);
162
142
  return;
163
143
  }
164
144
 
165
- console.log('[Mermaid] Mermaid library available, configuring theme...');
166
145
  // Configure Mermaid with enhanced styling
167
146
  configureMermaidTheme();
168
147
 
@@ -1055,6 +1034,49 @@ function initCollapsibleNavigation() {
1055
1034
  }
1056
1035
  }, 200);
1057
1036
 
1037
+ // Handle toggle-all button for root navigation
1038
+ const toggleAllButton = document.getElementById('nav-toggle-all');
1039
+ if (toggleAllButton) {
1040
+ toggleAllButton.addEventListener('click', (e) => {
1041
+ e.preventDefault();
1042
+
1043
+ const icon = document.getElementById('toggle-all-icon');
1044
+ const isExpanded = toggleAllButton.classList.contains('expanded');
1045
+
1046
+ // Get all collapsible sections (excluding the root)
1047
+ const allSections = document.querySelectorAll('.nav-section[data-level]:not([data-level="0"]) .nav-title.collapsible');
1048
+ const allContents = document.querySelectorAll('.nav-section[data-level]:not([data-level="0"]) .nav-content.collapsed, .nav-section[data-level]:not([data-level="0"]) .nav-content:not(.collapsed)');
1049
+
1050
+ if (isExpanded) {
1051
+ // Collapse all sections
1052
+ toggleAllButton.classList.remove('expanded');
1053
+ icon.className = 'ph ph-caret-right';
1054
+
1055
+ allSections.forEach(section => {
1056
+ section.classList.remove('expanded');
1057
+ });
1058
+
1059
+ allContents.forEach(content => {
1060
+ if (content.id) { // Only collapse if it has an id (is collapsible)
1061
+ content.classList.add('collapsed');
1062
+ }
1063
+ });
1064
+ } else {
1065
+ // Expand all sections
1066
+ toggleAllButton.classList.add('expanded');
1067
+ icon.className = 'ph ph-caret-down';
1068
+
1069
+ allSections.forEach(section => {
1070
+ section.classList.add('expanded');
1071
+ });
1072
+
1073
+ allContents.forEach(content => {
1074
+ content.classList.remove('collapsed');
1075
+ });
1076
+ }
1077
+ });
1078
+ }
1079
+
1058
1080
  const collapsibleTitles = document.querySelectorAll('.nav-title.collapsible');
1059
1081
 
1060
1082
  collapsibleTitles.forEach(title => {
@@ -1,5 +1,5 @@
1
1
  module.exports = {
2
- "configVersion": "1.9.17",
2
+ "configVersion": "1.9.18",
3
3
  "docsDir": "docs",
4
4
  "outputDir": "html",
5
5
  "siteName": "@knowcode/doc-builder",
@@ -0,0 +1,124 @@
1
+ module.exports = {
2
+ "configVersion": "1.9.17",
3
+ "docsDir": "docs",
4
+ "outputDir": "html",
5
+ "siteName": "@knowcode/doc-builder",
6
+ "siteDescription": "Beautiful documentation with the least effort possible",
7
+ "favicon": "✨",
8
+ "features": {
9
+ "authentication": false,
10
+ "changelog": true,
11
+ "mermaid": true,
12
+ "mermaidEnhanced": true,
13
+ "tooltips": true,
14
+ "search": false,
15
+ "darkMode": true,
16
+ "phosphorIcons": true,
17
+ "phosphorWeight": "regular",
18
+ "phosphorSize": "1.2em",
19
+ "normalizeTitle": true,
20
+ "showPdfDownload": true,
21
+ "menuDefaultOpen": false,
22
+ "attachments": true,
23
+ "dynamicNavIcons": true,
24
+ "subtleColors": true,
25
+ "privateDirectoryAuth": false,
26
+ "banner": false
27
+ },
28
+ "auth": {
29
+ "supabaseUrl": "https://xcihhnfcitjrwbynxmka.supabase.co",
30
+ "supabaseAnonKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InhjaWhobmZjaXRqcndieW54bWthIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTM0Mzc2MzcsImV4cCI6MjA2OTAxMzYzN30.zvWp3JFIR8fBIiwuFF5gqOR_Kxb42baZS5fsBz60XOY"
31
+ },
32
+ "changelog": {
33
+ "daysBack": 14,
34
+ "enabled": true
35
+ },
36
+ "banner": {
37
+ "enabled": false,
38
+ "text": "This documentation is a preview version - some content may be incomplete",
39
+ "icon": "fas fa-exclamation-triangle",
40
+ "type": "warning",
41
+ "dismissible": true
42
+ },
43
+ "folderOrder": [],
44
+ "folderDescriptions": {},
45
+ "folderIcons": {},
46
+ "deployment": {
47
+ "platform": "vercel",
48
+ "outputDirectory": "html"
49
+ },
50
+ "seo": {
51
+ "enabled": true,
52
+ "siteUrl": "https://doc-builder-delta.vercel.app",
53
+ "author": "Lindsay Smith",
54
+ "twitterHandle": "@planbbackups",
55
+ "language": "en-US",
56
+ "keywords": [
57
+ "documentation",
58
+ "markdown",
59
+ "static site generator",
60
+ "vercel",
61
+ "notion-style"
62
+ ],
63
+ "titleTemplate": "{pageTitle} | {siteName}",
64
+ "autoKeywords": true,
65
+ "keywordLimit": 7,
66
+ "descriptionFallback": "smart",
67
+ "organization": {
68
+ "name": "Knowcode Ltd",
69
+ "url": "https://knowcode.tech",
70
+ "logo": ""
71
+ },
72
+ "ogImage": "/og-default.png",
73
+ "generateSitemap": true,
74
+ "generateRobotsTxt": true,
75
+ "customMetaTags": [
76
+ {
77
+ "name": "google-site-verification",
78
+ "content": "FtzcDTf5BQ9K5EfnGazQkgU2U4FiN3ITzM7gHwqUAqQ"
79
+ },
80
+ {
81
+ "name": "msvalidate.01",
82
+ "content": "B2D8C4C12C530D47AA962B24CAA09630"
83
+ }
84
+ ]
85
+ },
86
+ "attachmentTypes": [
87
+ ".pdf",
88
+ ".doc",
89
+ ".docx",
90
+ ".xls",
91
+ ".xlsx",
92
+ ".csv",
93
+ ".ppt",
94
+ ".pptx",
95
+ ".txt",
96
+ ".rtf",
97
+ ".html",
98
+ ".htm",
99
+ ".zip",
100
+ ".tar",
101
+ ".gz",
102
+ ".7z",
103
+ ".rar",
104
+ ".png",
105
+ ".jpg",
106
+ ".jpeg",
107
+ ".gif",
108
+ ".svg",
109
+ ".webp",
110
+ ".ico",
111
+ ".bmp",
112
+ ".json",
113
+ ".xml",
114
+ ".yaml",
115
+ ".yml",
116
+ ".toml",
117
+ ".mp4",
118
+ ".mp3",
119
+ ".wav",
120
+ ".avi",
121
+ ".mov"
122
+ ],
123
+ "productionUrl": "https://doc-builder-delta.vercel.app"
124
+ };
package/html/README.html CHANGED
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:42:09.988Z",
103
- "dateModified": "2025-08-02T07:42:09.988Z",
102
+ "datePublished": "2025-08-03T10:54:29.934Z",
103
+ "dateModified": "2025-08-03T10:54:29.934Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/README.html"
@@ -133,7 +133,7 @@
133
133
 
134
134
  <div class="header-actions">
135
135
  <div class="deployment-info">
136
- <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
136
+ <span class="deployment-date" title="Built with doc-builder v1.9.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
137
137
  </div>
138
138
 
139
139
 
@@ -173,15 +173,14 @@
173
173
  <nav class="navigation">
174
174
 
175
175
  <div class="nav-section" data-level="0">
176
- <a class="nav-title expanded" href="/README.html" >
177
- <i class="ph ph-house"></i> Documentation
176
+ <a class="nav-title toggle-all-nav expanded" href="#" id="nav-toggle-all" title="Collapse/Expand All">
177
+ <i class="ph ph-caret-down" id="toggle-all-icon"></i> Documentation
178
178
  </a>
179
- <div class="nav-content" >
179
+ <div class="nav-content">
180
180
  <a href="/README.html" class="nav-item active" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
181
181
  <a href="/about-doc-builder.html" class="nav-item" data-tooltip="About @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> About Doc Builder</a>
182
182
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Index</a>
183
183
  <a href="/image-modal-test.html" class="nav-item" data-tooltip="This document tests the new image modal functionality in doc-builder."><i class="ph ph-file-text"></i> Image Modal Test</a>
184
- <a href="/test-mermaid-enhanced.html" class="nav-item" data-tooltip="Mermaid Enhanced Styling Test."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Test Mermaid Enhanced</a>
185
184
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel Cli Setup Guide</a>
186
185
  <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel First Time Setup Guide</a></div></div>
187
186
  <div class="nav-section" data-level="1">
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:42:10.001Z",
103
- "dateModified": "2025-08-02T07:42:10.001Z",
102
+ "datePublished": "2025-08-03T10:54:29.961Z",
103
+ "dateModified": "2025-08-03T10:54:29.961Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/about-doc-builder.html"
@@ -133,7 +133,7 @@
133
133
 
134
134
  <div class="header-actions">
135
135
  <div class="deployment-info">
136
- <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
136
+ <span class="deployment-date" title="Built with doc-builder v1.9.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
137
137
  </div>
138
138
 
139
139
 
@@ -173,15 +173,14 @@
173
173
  <nav class="navigation">
174
174
 
175
175
  <div class="nav-section" data-level="0">
176
- <a class="nav-title" href="/README.html" >
177
- <i class="ph ph-house"></i> Documentation
176
+ <a class="nav-title toggle-all-nav expanded" href="#" id="nav-toggle-all" title="Collapse/Expand All">
177
+ <i class="ph ph-caret-down" id="toggle-all-icon"></i> Documentation
178
178
  </a>
179
- <div class="nav-content" >
179
+ <div class="nav-content">
180
180
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
181
181
  <a href="/about-doc-builder.html" class="nav-item active" data-tooltip="About @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> About Doc Builder</a>
182
182
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Index</a>
183
183
  <a href="/image-modal-test.html" class="nav-item" data-tooltip="This document tests the new image modal functionality in doc-builder."><i class="ph ph-file-text"></i> Image Modal Test</a>
184
- <a href="/test-mermaid-enhanced.html" class="nav-item" data-tooltip="Mermaid Enhanced Styling Test."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Test Mermaid Enhanced</a>
185
184
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel Cli Setup Guide</a>
186
185
  <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel First Time Setup Guide</a></div></div>
187
186
  <div class="nav-section" data-level="1">
@@ -276,7 +275,7 @@
276
275
  </tr>
277
276
  <tr>
278
277
  <td><i style="font-size: 1.2em" class="ph ph-chart-bar" aria-label="chart"></i> <strong>Mermaid Diagrams</strong></td>
279
- <td>Built-in support for flowcharts, sequence diagrams, and more</td>
278
+ <td>Enhanced styling with rounded corners &amp; Notion-inspired themes</td>
280
279
  </tr>
281
280
  <tr>
282
281
  <td><i style="font-size: 1.2em" class="ph ph-image" aria-label="picture"></i> <strong>Image Modals</strong></td>
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:42:10.005Z",
103
- "dateModified": "2025-08-02T07:42:10.005Z",
102
+ "datePublished": "2025-08-03T10:54:29.967Z",
103
+ "dateModified": "2025-08-03T10:54:29.967Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
@@ -133,7 +133,7 @@
133
133
 
134
134
  <div class="header-actions">
135
135
  <div class="deployment-info">
136
- <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
136
+ <span class="deployment-date" title="Built with doc-builder v1.9.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
137
137
  </div>
138
138
 
139
139
 
@@ -173,15 +173,14 @@
173
173
  <nav class="navigation">
174
174
 
175
175
  <div class="nav-section" data-level="0">
176
- <a class="nav-title" href="/README.html" >
177
- <i class="ph ph-house"></i> Documentation
176
+ <a class="nav-title toggle-all-nav expanded" href="#" id="nav-toggle-all" title="Collapse/Expand All">
177
+ <i class="ph ph-caret-down" id="toggle-all-icon"></i> Documentation
178
178
  </a>
179
- <div class="nav-content" >
179
+ <div class="nav-content">
180
180
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
181
181
  <a href="/about-doc-builder.html" class="nav-item" data-tooltip="About @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> About Doc Builder</a>
182
182
  <a href="/documentation-index.html" class="nav-item active" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Index</a>
183
183
  <a href="/image-modal-test.html" class="nav-item" data-tooltip="This document tests the new image modal functionality in doc-builder."><i class="ph ph-file-text"></i> Image Modal Test</a>
184
- <a href="/test-mermaid-enhanced.html" class="nav-item" data-tooltip="Mermaid Enhanced Styling Test."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Test Mermaid Enhanced</a>
185
184
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel Cli Setup Guide</a>
186
185
  <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel First Time Setup Guide</a></div></div>
187
186
  <div class="nav-section" data-level="1">
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:42:10.010Z",
103
- "dateModified": "2025-08-02T07:42:10.010Z",
102
+ "datePublished": "2025-08-03T10:54:29.988Z",
103
+ "dateModified": "2025-08-03T10:54:29.988Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/authentication-default-change.html"
@@ -139,7 +139,7 @@
139
139
 
140
140
  <div class="header-actions">
141
141
  <div class="deployment-info">
142
- <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -179,15 +179,14 @@
179
179
  <nav class="navigation">
180
180
 
181
181
  <div class="nav-section" data-level="0">
182
- <a class="nav-title" href="/README.html" >
183
- <i class="ph ph-house"></i> Documentation
182
+ <a class="nav-title toggle-all-nav expanded" href="#" id="nav-toggle-all" title="Collapse/Expand All">
183
+ <i class="ph ph-caret-down" id="toggle-all-icon"></i> Documentation
184
184
  </a>
185
- <div class="nav-content" >
185
+ <div class="nav-content">
186
186
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
187
187
  <a href="/about-doc-builder.html" class="nav-item" data-tooltip="About @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> About Doc Builder</a>
188
188
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Index</a>
189
189
  <a href="/image-modal-test.html" class="nav-item" data-tooltip="This document tests the new image modal functionality in doc-builder."><i class="ph ph-file-text"></i> Image Modal Test</a>
190
- <a href="/test-mermaid-enhanced.html" class="nav-item" data-tooltip="Mermaid Enhanced Styling Test."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Test Mermaid Enhanced</a>
191
190
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel Cli Setup Guide</a>
192
191
  <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel First Time Setup Guide</a></div></div>
193
192
  <div class="nav-section" data-level="1">
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:42:10.014Z",
103
- "dateModified": "2025-08-02T07:42:10.014Z",
102
+ "datePublished": "2025-08-03T10:54:30.012Z",
103
+ "dateModified": "2025-08-03T10:54:30.012Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/authentication-guide.html"
@@ -139,7 +139,7 @@
139
139
 
140
140
  <div class="header-actions">
141
141
  <div class="deployment-info">
142
- <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -179,15 +179,14 @@
179
179
  <nav class="navigation">
180
180
 
181
181
  <div class="nav-section" data-level="0">
182
- <a class="nav-title" href="/README.html" >
183
- <i class="ph ph-house"></i> Documentation
182
+ <a class="nav-title toggle-all-nav expanded" href="#" id="nav-toggle-all" title="Collapse/Expand All">
183
+ <i class="ph ph-caret-down" id="toggle-all-icon"></i> Documentation
184
184
  </a>
185
- <div class="nav-content" >
185
+ <div class="nav-content">
186
186
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
187
187
  <a href="/about-doc-builder.html" class="nav-item" data-tooltip="About @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> About Doc Builder</a>
188
188
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Index</a>
189
189
  <a href="/image-modal-test.html" class="nav-item" data-tooltip="This document tests the new image modal functionality in doc-builder."><i class="ph ph-file-text"></i> Image Modal Test</a>
190
- <a href="/test-mermaid-enhanced.html" class="nav-item" data-tooltip="Mermaid Enhanced Styling Test."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Test Mermaid Enhanced</a>
191
190
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel Cli Setup Guide</a>
192
191
  <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel First Time Setup Guide</a></div></div>
193
192
  <div class="nav-section" data-level="1">
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:42:10.019Z",
103
- "dateModified": "2025-08-02T07:42:10.019Z",
102
+ "datePublished": "2025-08-03T10:54:30.040Z",
103
+ "dateModified": "2025-08-03T10:54:30.040Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/claude-workflow-guide.html"
@@ -139,7 +139,7 @@
139
139
 
140
140
  <div class="header-actions">
141
141
  <div class="deployment-info">
142
- <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -179,15 +179,14 @@
179
179
  <nav class="navigation">
180
180
 
181
181
  <div class="nav-section" data-level="0">
182
- <a class="nav-title" href="/README.html" >
183
- <i class="ph ph-house"></i> Documentation
182
+ <a class="nav-title toggle-all-nav expanded" href="#" id="nav-toggle-all" title="Collapse/Expand All">
183
+ <i class="ph ph-caret-down" id="toggle-all-icon"></i> Documentation
184
184
  </a>
185
- <div class="nav-content" >
185
+ <div class="nav-content">
186
186
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
187
187
  <a href="/about-doc-builder.html" class="nav-item" data-tooltip="About @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> About Doc Builder</a>
188
188
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Index</a>
189
189
  <a href="/image-modal-test.html" class="nav-item" data-tooltip="This document tests the new image modal functionality in doc-builder."><i class="ph ph-file-text"></i> Image Modal Test</a>
190
- <a href="/test-mermaid-enhanced.html" class="nav-item" data-tooltip="Mermaid Enhanced Styling Test."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Test Mermaid Enhanced</a>
191
190
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel Cli Setup Guide</a>
192
191
  <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel First Time Setup Guide</a></div></div>
193
192
  <div class="nav-section" data-level="1">
@@ -8,7 +8,7 @@
8
8
 
9
9
  <meta name="generator" content="@knowcode/doc-builder by Knowcode Ltd">
10
10
  <meta name="author" content="Lindsay Smith">
11
- <meta name="keywords" content="documentation, markdown, static site generator, vercel, notion-style, config, configuration">
11
+ <meta name="keywords" content="documentation, markdown, static site generator, vercel, notion-style, configuration, config">
12
12
  <meta name="robots" content="index, follow">
13
13
  <link rel="canonical" href="https://doc-builder-delta.vercel.app/guides/configuration-guide.html">
14
14
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:42:10.023Z",
103
- "dateModified": "2025-08-02T07:42:10.023Z",
102
+ "datePublished": "2025-08-03T10:54:30.070Z",
103
+ "dateModified": "2025-08-03T10:54:30.070Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/configuration-guide.html"
@@ -139,7 +139,7 @@
139
139
 
140
140
  <div class="header-actions">
141
141
  <div class="deployment-info">
142
- <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -179,15 +179,14 @@
179
179
  <nav class="navigation">
180
180
 
181
181
  <div class="nav-section" data-level="0">
182
- <a class="nav-title" href="/README.html" >
183
- <i class="ph ph-house"></i> Documentation
182
+ <a class="nav-title toggle-all-nav expanded" href="#" id="nav-toggle-all" title="Collapse/Expand All">
183
+ <i class="ph ph-caret-down" id="toggle-all-icon"></i> Documentation
184
184
  </a>
185
- <div class="nav-content" >
185
+ <div class="nav-content">
186
186
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
187
187
  <a href="/about-doc-builder.html" class="nav-item" data-tooltip="About @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> About Doc Builder</a>
188
188
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Index</a>
189
189
  <a href="/image-modal-test.html" class="nav-item" data-tooltip="This document tests the new image modal functionality in doc-builder."><i class="ph ph-file-text"></i> Image Modal Test</a>
190
- <a href="/test-mermaid-enhanced.html" class="nav-item" data-tooltip="Mermaid Enhanced Styling Test."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Test Mermaid Enhanced</a>
191
190
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel Cli Setup Guide</a>
192
191
  <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel First Time Setup Guide</a></div></div>
193
192
  <div class="nav-section" data-level="1">
@@ -294,6 +293,7 @@
294
293
  &quot;authentication&quot;: false,
295
294
  &quot;changelog&quot;: true,
296
295
  &quot;mermaid&quot;: true,
296
+ &quot;mermaidEnhanced&quot;: true,
297
297
  &quot;tooltips&quot;: true,
298
298
  &quot;search&quot;: false,
299
299
  &quot;darkMode&quot;: true,
@@ -377,6 +377,7 @@
377
377
  <li><strong><code>subtleColors</code></strong> - Colored status indicators</li>
378
378
  <li><strong><code>darkMode</code></strong> - Theme switching support</li>
379
379
  <li><strong><code>mermaid</code></strong> - Diagram rendering</li>
380
+ <li><strong><code>mermaidEnhanced</code></strong> - Enhanced diagram styling with rounded corners (v1.9.18+)</li>
380
381
  <li><strong><code>authentication</code></strong> - Private content protection</li>
381
382
  </ul>
382
383
  <h3>Advanced Settings</h3>
@@ -385,6 +386,27 @@
385
386
  <li><strong><code>phosphorSize</code></strong> - Icon size relative to text</li>
386
387
  <li><strong><code>attachmentTypes</code></strong> - File types to copy during build</li>
387
388
  </ul>
389
+ <h2><i style="font-size: 1.2em" class="ph ph-chart-bar" aria-label="chart"></i> Mermaid Diagram Configuration</h2>
390
+ <h3>Enhanced Styling (v1.9.18+)</h3>
391
+ <p>The new <code>mermaidEnhanced</code> feature provides professional diagram styling:</p>
392
+ <pre><code class="language-javascript">features: {
393
+ mermaid: true, // Enable Mermaid diagrams
394
+ mermaidEnhanced: true, // Enhanced styling with rounded corners
395
+ }
396
+ </code></pre>
397
+ <p><strong>Enhanced Features:</strong></p>
398
+ <ul>
399
+ <li><i style="font-size: 1.2em" class="ph ph-palette" aria-label="design"></i> <strong>Rounded corners</strong> (8px radius) on all diagram shapes</li>
400
+ <li><i style="font-size: 1.2em" class="ph ph-palette" aria-label="design"></i> <strong>Notion-inspired color palette</strong> for better visual integration</li>
401
+ <li><i style="font-size: 1.2em" class="ph ph-moon" aria-label="night"></i> <strong>Automatic theme support</strong> for light and dark modes</li>
402
+ <li><i style="font-size: 1.2em" class="ph ph-sparkle" aria-label="special"></i> <strong>Improved spacing</strong> and typography consistency</li>
403
+ </ul>
404
+ <p><strong>To disable enhanced styling:</strong></p>
405
+ <pre><code class="language-javascript">features: {
406
+ mermaid: true,
407
+ mermaidEnhanced: false, // Use default Mermaid styling
408
+ }
409
+ </code></pre>
388
410
  <h2><i style="font-size: 1.2em" class="ph ph-rocket-launch" aria-label="launch"></i> No Manual Editing Required</h2>
389
411
  <p>The beauty of this system is that you typically <strong>never need to manually edit</strong> the config file:</p>
390
412
  <ol>