@knowcode/doc-builder 1.9.14 → 1.9.16
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.
- package/.claude/settings.local.json +2 -1
- package/assets/css/notion-style.css +76 -0
- package/assets/js/main.js +76 -0
- package/doc-builder.config.js +11 -2
- package/doc-builder.config.js.backup.1754059241330 +115 -0
- package/doc-builder.config.js.backup.1754119567787 +123 -0
- package/html/README.html +11 -16
- package/html/about-doc-builder.html +480 -0
- package/html/css/notion-style.css +178 -1
- package/html/documentation-index.html +11 -16
- package/html/guides/authentication-default-change.html +11 -16
- package/html/guides/authentication-guide.html +11 -16
- package/html/guides/claude-workflow-guide.html +11 -16
- package/html/guides/configuration-guide.html +11 -16
- package/html/guides/documentation-standards.html +11 -16
- package/html/guides/html-embedding-guide.html +11 -16
- package/html/guides/image-modal-guide.html +11 -16
- package/html/guides/phosphor-icons-guide.html +11 -16
- package/html/guides/private-directory-authentication-troubleshooting.html +11 -16
- package/html/guides/private-directory-authentication.html +11 -16
- package/html/guides/public-site-deployment.html +11 -16
- package/html/guides/search-engine-verification-guide.html +11 -16
- package/html/guides/seo-guide.html +11 -16
- package/html/guides/seo-optimization-guide.html +11 -16
- package/html/guides/supabase-authentication-complete-guide.html +11 -16
- package/html/guides/troubleshooting-guide.html +11 -16
- package/html/guides/windows-setup-guide.html +11 -16
- package/html/image-modal-test.html +11 -16
- package/html/index.html +11 -16
- package/html/js/main.js +76 -0
- package/html/private/cache-control-anti-pattern.html +11 -16
- package/html/private/launch/README.html +11 -16
- package/html/private/launch/auth-cleanup-summary.html +11 -16
- package/html/private/launch/bubble-plugin-specification.html +11 -16
- package/html/private/launch/go-to-market-strategy.html +11 -16
- package/html/private/launch/launch-announcements.html +11 -16
- package/html/private/launch/vercel-deployment-auth-setup.html +11 -16
- package/html/private/next-steps-walkthrough.html +11 -16
- package/html/private/supabase-auth-implementation-completed.html +11 -16
- package/html/private/supabase-auth-implementation-plan.html +11 -16
- package/html/private/supabase-auth-integration-plan.html +11 -16
- package/html/private/supabase-auth-setup-guide.html +11 -16
- package/html/private/test-private-doc.html +11 -16
- package/html/private/user-management-tooling.html +11 -16
- package/html/prompts/beautiful-documentation-design.html +11 -16
- package/html/prompts/markdown-document-standards.html +11 -16
- package/html/prompts/project-rename-strategy-sasha-publish.html +519 -0
- package/html/sitemap.xml +72 -54
- package/html/test-mermaid-enhanced.html +341 -0
- package/html/vercel-cli-setup-guide.html +11 -16
- package/html/vercel-first-time-setup-guide.html +11 -16
- package/lib/config.js +5 -0
- package/lib/core-builder.js +2 -1
- package/lib/emoji-mapper.js +10 -0
- package/package.json +1 -1
|
@@ -459,6 +459,43 @@ pre code {
|
|
|
459
459
|
color: var(--color-text-primary);
|
|
460
460
|
}
|
|
461
461
|
|
|
462
|
+
/* Banner types */
|
|
463
|
+
.banner-warning {
|
|
464
|
+
background: var(--color-accent-yellow-bg);
|
|
465
|
+
border-bottom: 1px solid var(--color-accent-yellow);
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.banner-warning .banner-icon {
|
|
469
|
+
color: var(--color-accent-yellow);
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.banner-info {
|
|
473
|
+
background: var(--color-accent-blue-bg);
|
|
474
|
+
border-bottom: 1px solid var(--color-accent-blue);
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.banner-info .banner-icon {
|
|
478
|
+
color: var(--color-accent-blue);
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.banner-success {
|
|
482
|
+
background: var(--color-accent-green-bg);
|
|
483
|
+
border-bottom: 1px solid var(--color-accent-green);
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.banner-success .banner-icon {
|
|
487
|
+
color: var(--color-accent-green);
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.banner-error {
|
|
491
|
+
background: var(--color-accent-red-bg);
|
|
492
|
+
border-bottom: 1px solid var(--color-accent-red);
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.banner-error .banner-icon {
|
|
496
|
+
color: var(--color-accent-red);
|
|
497
|
+
}
|
|
498
|
+
|
|
462
499
|
/* Breadcrumbs - definition moved to line 888 to avoid duplication */
|
|
463
500
|
|
|
464
501
|
.breadcrumb-item {
|
|
@@ -1092,6 +1129,82 @@ tr:hover {
|
|
|
1092
1129
|
border-radius: var(--radius-lg);
|
|
1093
1130
|
overflow-x: auto;
|
|
1094
1131
|
margin: var(--space-2) 0;
|
|
1132
|
+
transition: all var(--duration-normal);
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
/* Enhanced Mermaid SVG Styling */
|
|
1136
|
+
.mermaid svg {
|
|
1137
|
+
max-width: 100%;
|
|
1138
|
+
height: auto;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
/* Enhanced Mermaid Styling - only applied when mermaidEnhanced is enabled */
|
|
1142
|
+
[data-mermaid-enhanced="true"] .mermaid .node rect,
|
|
1143
|
+
[data-mermaid-enhanced="true"] .mermaid .node polygon,
|
|
1144
|
+
[data-mermaid-enhanced="true"] .mermaid .node circle,
|
|
1145
|
+
[data-mermaid-enhanced="true"] .mermaid .node ellipse {
|
|
1146
|
+
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
|
|
1147
|
+
transition: all 0.2s ease;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
/* Enhanced rectangle shapes with rounded corners */
|
|
1151
|
+
[data-mermaid-enhanced="true"] .mermaid .node rect {
|
|
1152
|
+
rx: 8px !important;
|
|
1153
|
+
ry: 8px !important;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
/* Enhanced flowchart nodes */
|
|
1157
|
+
[data-mermaid-enhanced="true"] .mermaid .flowchart-node {
|
|
1158
|
+
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
/* Smoother connection lines */
|
|
1162
|
+
[data-mermaid-enhanced="true"] .mermaid .flowchart-link {
|
|
1163
|
+
stroke-width: 2px;
|
|
1164
|
+
fill: none;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
/* Enhanced text styling */
|
|
1168
|
+
[data-mermaid-enhanced="true"] .mermaid .node text,
|
|
1169
|
+
[data-mermaid-enhanced="true"] .mermaid .edgeLabel {
|
|
1170
|
+
font-family: var(--font-sans);
|
|
1171
|
+
font-size: var(--text-base);
|
|
1172
|
+
font-weight: var(--font-medium);
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
/* Hover effects for interactive elements */
|
|
1176
|
+
[data-mermaid-enhanced="true"] .mermaid .node:hover rect,
|
|
1177
|
+
[data-mermaid-enhanced="true"] .mermaid .node:hover polygon,
|
|
1178
|
+
[data-mermaid-enhanced="true"] .mermaid .node:hover circle,
|
|
1179
|
+
[data-mermaid-enhanced="true"] .mermaid .node:hover ellipse {
|
|
1180
|
+
filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
|
|
1181
|
+
transform: translateY(-1px);
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
/* Enhanced cluster/subgraph styling */
|
|
1185
|
+
[data-mermaid-enhanced="true"] .mermaid .cluster rect {
|
|
1186
|
+
rx: 12px !important;
|
|
1187
|
+
ry: 12px !important;
|
|
1188
|
+
stroke-dasharray: none;
|
|
1189
|
+
opacity: 0.8;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
/* Decision diamond improvements */
|
|
1193
|
+
[data-mermaid-enhanced="true"] .mermaid .flowchart-node polygon {
|
|
1194
|
+
filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
/* Process node styling */
|
|
1198
|
+
[data-mermaid-enhanced="true"] .mermaid .flowchart-node rect {
|
|
1199
|
+
stroke-width: 1.5px;
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
/* Edge label background */
|
|
1203
|
+
[data-mermaid-enhanced="true"] .mermaid .edgeLabel .label {
|
|
1204
|
+
background: var(--color-bg-card);
|
|
1205
|
+
border-radius: var(--radius-sm);
|
|
1206
|
+
padding: var(--space-1) var(--space-2);
|
|
1207
|
+
border: 1px solid var(--color-border-default);
|
|
1095
1208
|
}
|
|
1096
1209
|
|
|
1097
1210
|
/* Mermaid Full Screen Viewer */
|
|
@@ -2245,5 +2358,69 @@ body.has-private-access .private-nav {
|
|
|
2245
2358
|
padding: var(--space-2) var(--space-3);
|
|
2246
2359
|
}
|
|
2247
2360
|
}
|
|
2248
|
-
|
|
2361
|
+
|
|
2362
|
+
/* Print styles - hide breadcrumbs and other UI elements for clean PDF output */
|
|
2363
|
+
@media print {
|
|
2364
|
+
/* Hide breadcrumbs completely when printing */
|
|
2365
|
+
.breadcrumbs {
|
|
2366
|
+
display: none !important;
|
|
2367
|
+
}
|
|
2368
|
+
|
|
2369
|
+
/* Hide navigation and header elements for clean printing */
|
|
2370
|
+
.navigation,
|
|
2371
|
+
.menu-toggle,
|
|
2372
|
+
.theme-toggle,
|
|
2373
|
+
.auth-btn,
|
|
2374
|
+
.header {
|
|
2375
|
+
display: none !important;
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2378
|
+
/* Adjust main content area for printing without breadcrumbs */
|
|
2379
|
+
.main-content {
|
|
2380
|
+
margin-top: 0 !important;
|
|
2381
|
+
min-height: auto !important;
|
|
2382
|
+
padding-top: var(--space-4);
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
/* Ensure content takes full width for printing */
|
|
2386
|
+
.content-area {
|
|
2387
|
+
max-width: none !important;
|
|
2388
|
+
padding: 0;
|
|
2389
|
+
margin: 0;
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
/* Optimize text for printing */
|
|
2393
|
+
body {
|
|
2394
|
+
background: white !important;
|
|
2395
|
+
color: black !important;
|
|
2396
|
+
font-size: 12pt;
|
|
2397
|
+
line-height: 1.4;
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
/* Hide interactive elements */
|
|
2401
|
+
.image-modal,
|
|
2402
|
+
.tooltip,
|
|
2403
|
+
button:not(.copy-btn) {
|
|
2404
|
+
display: none !important;
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
/* Ensure code blocks print well */
|
|
2408
|
+
pre, code {
|
|
2409
|
+
background: #f5f5f5 !important;
|
|
2410
|
+
border: 1px solid #ddd !important;
|
|
2411
|
+
page-break-inside: avoid;
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
/* Page break optimization */
|
|
2415
|
+
h1, h2, h3, h4, h5, h6 {
|
|
2416
|
+
page-break-after: avoid;
|
|
2417
|
+
color: black !important;
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
/* Avoid breaking images */
|
|
2421
|
+
img {
|
|
2422
|
+
page-break-inside: avoid;
|
|
2423
|
+
max-width: 100% !important;
|
|
2424
|
+
height: auto !important;
|
|
2425
|
+
}
|
|
2249
2426
|
}
|
|
@@ -99,8 +99,8 @@
|
|
|
99
99
|
"name": "Knowcode Ltd",
|
|
100
100
|
"url": "https://knowcode.tech"
|
|
101
101
|
},
|
|
102
|
-
"datePublished": "2025-
|
|
103
|
-
"dateModified": "2025-
|
|
102
|
+
"datePublished": "2025-08-02T07:26:07.891Z",
|
|
103
|
+
"dateModified": "2025-08-02T07:26:07.891Z",
|
|
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.
|
|
136
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.15">Last updated: Aug 2, 2025, 07:26 AM UTC</span>
|
|
137
137
|
</div>
|
|
138
138
|
|
|
139
139
|
|
|
@@ -153,16 +153,7 @@
|
|
|
153
153
|
</div>
|
|
154
154
|
</header>
|
|
155
155
|
|
|
156
|
-
|
|
157
|
-
<div id="preview-banner" class="preview-banner">
|
|
158
|
-
<div class="banner-content">
|
|
159
|
-
<i class="fas fa-exclamation-triangle banner-icon"></i>
|
|
160
|
-
<span class="banner-text">This documentation is a preview version - some content may be incomplete</span>
|
|
161
|
-
<button id="dismiss-banner" class="banner-dismiss" aria-label="Dismiss banner">
|
|
162
|
-
<i class="fas fa-times"></i>
|
|
163
|
-
</button>
|
|
164
|
-
</div>
|
|
165
|
-
</div>
|
|
156
|
+
|
|
166
157
|
|
|
167
158
|
<!-- Breadcrumbs -->
|
|
168
159
|
<nav class="breadcrumbs" id="breadcrumbs">
|
|
@@ -175,7 +166,7 @@
|
|
|
175
166
|
<aside class="sidebar">
|
|
176
167
|
<div class="sidebar-header">
|
|
177
168
|
<div class="filter-box">
|
|
178
|
-
<input type="text" placeholder="
|
|
169
|
+
<input type="text" placeholder="Search menu..." class="filter-input" id="nav-filter">
|
|
179
170
|
<i class="fas fa-search filter-icon"></i>
|
|
180
171
|
</div>
|
|
181
172
|
</div>
|
|
@@ -187,8 +178,10 @@
|
|
|
187
178
|
</a>
|
|
188
179
|
<div class="nav-content" >
|
|
189
180
|
<a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
|
|
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>
|
|
190
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>
|
|
191
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>
|
|
192
185
|
<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>
|
|
193
186
|
<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>
|
|
194
187
|
<div class="nav-section" data-level="1">
|
|
@@ -243,7 +236,8 @@
|
|
|
243
236
|
</a>
|
|
244
237
|
<div class="nav-content collapsed" id="nav-prompts-1">
|
|
245
238
|
<a href="/prompts/beautiful-documentation-design.html" class="nav-item" data-tooltip="🎨 Beautiful Documentation Design Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Beautiful Documentation Design</a>
|
|
246
|
-
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a
|
|
239
|
+
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a>
|
|
240
|
+
<a href="/prompts/project-rename-strategy-sasha-publish.html" class="nav-item" data-tooltip="This document outlines the comprehensive strategy for renaming the @knowcode/doc-builder project to "sasha-publish", including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
|
|
247
241
|
</nav>
|
|
248
242
|
<div class="resize-handle"></div>
|
|
249
243
|
</aside>
|
|
@@ -454,7 +448,8 @@ Detailed information...
|
|
|
454
448
|
window.docBuilderConfig = {
|
|
455
449
|
features: {
|
|
456
450
|
showPdfDownload: true,
|
|
457
|
-
menuDefaultOpen: false
|
|
451
|
+
menuDefaultOpen: false,
|
|
452
|
+
mermaidEnhanced: true
|
|
458
453
|
}
|
|
459
454
|
};
|
|
460
455
|
</script>
|
|
@@ -99,8 +99,8 @@
|
|
|
99
99
|
"name": "Knowcode Ltd",
|
|
100
100
|
"url": "https://knowcode.tech"
|
|
101
101
|
},
|
|
102
|
-
"datePublished": "2025-
|
|
103
|
-
"dateModified": "2025-
|
|
102
|
+
"datePublished": "2025-08-02T07:26:07.896Z",
|
|
103
|
+
"dateModified": "2025-08-02T07:26:07.896Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.15">Last updated: Aug 2, 2025, 07:26 AM UTC</span>
|
|
143
143
|
</div>
|
|
144
144
|
|
|
145
145
|
|
|
@@ -159,16 +159,7 @@
|
|
|
159
159
|
</div>
|
|
160
160
|
</header>
|
|
161
161
|
|
|
162
|
-
|
|
163
|
-
<div id="preview-banner" class="preview-banner">
|
|
164
|
-
<div class="banner-content">
|
|
165
|
-
<i class="fas fa-exclamation-triangle banner-icon"></i>
|
|
166
|
-
<span class="banner-text">This documentation is a preview version - some content may be incomplete</span>
|
|
167
|
-
<button id="dismiss-banner" class="banner-dismiss" aria-label="Dismiss banner">
|
|
168
|
-
<i class="fas fa-times"></i>
|
|
169
|
-
</button>
|
|
170
|
-
</div>
|
|
171
|
-
</div>
|
|
162
|
+
|
|
172
163
|
|
|
173
164
|
<!-- Breadcrumbs -->
|
|
174
165
|
<nav class="breadcrumbs" id="breadcrumbs">
|
|
@@ -181,7 +172,7 @@
|
|
|
181
172
|
<aside class="sidebar">
|
|
182
173
|
<div class="sidebar-header">
|
|
183
174
|
<div class="filter-box">
|
|
184
|
-
<input type="text" placeholder="
|
|
175
|
+
<input type="text" placeholder="Search menu..." class="filter-input" id="nav-filter">
|
|
185
176
|
<i class="fas fa-search filter-icon"></i>
|
|
186
177
|
</div>
|
|
187
178
|
</div>
|
|
@@ -193,8 +184,10 @@
|
|
|
193
184
|
</a>
|
|
194
185
|
<div class="nav-content" >
|
|
195
186
|
<a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
|
|
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>
|
|
196
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>
|
|
197
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>
|
|
198
191
|
<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>
|
|
199
192
|
<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>
|
|
200
193
|
<div class="nav-section" data-level="1">
|
|
@@ -249,7 +242,8 @@
|
|
|
249
242
|
</a>
|
|
250
243
|
<div class="nav-content collapsed" id="nav-prompts-1">
|
|
251
244
|
<a href="/prompts/beautiful-documentation-design.html" class="nav-item" data-tooltip="🎨 Beautiful Documentation Design Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Beautiful Documentation Design</a>
|
|
252
|
-
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a
|
|
245
|
+
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a>
|
|
246
|
+
<a href="/prompts/project-rename-strategy-sasha-publish.html" class="nav-item" data-tooltip="This document outlines the comprehensive strategy for renaming the @knowcode/doc-builder project to "sasha-publish", including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
|
|
253
247
|
</nav>
|
|
254
248
|
<div class="resize-handle"></div>
|
|
255
249
|
</aside>
|
|
@@ -353,7 +347,8 @@ module.exports = {
|
|
|
353
347
|
window.docBuilderConfig = {
|
|
354
348
|
features: {
|
|
355
349
|
showPdfDownload: true,
|
|
356
|
-
menuDefaultOpen: false
|
|
350
|
+
menuDefaultOpen: false,
|
|
351
|
+
mermaidEnhanced: true
|
|
357
352
|
}
|
|
358
353
|
};
|
|
359
354
|
</script>
|
|
@@ -99,8 +99,8 @@
|
|
|
99
99
|
"name": "Knowcode Ltd",
|
|
100
100
|
"url": "https://knowcode.tech"
|
|
101
101
|
},
|
|
102
|
-
"datePublished": "2025-
|
|
103
|
-
"dateModified": "2025-
|
|
102
|
+
"datePublished": "2025-08-02T07:26:07.902Z",
|
|
103
|
+
"dateModified": "2025-08-02T07:26:07.902Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.15">Last updated: Aug 2, 2025, 07:26 AM UTC</span>
|
|
143
143
|
</div>
|
|
144
144
|
|
|
145
145
|
|
|
@@ -159,16 +159,7 @@
|
|
|
159
159
|
</div>
|
|
160
160
|
</header>
|
|
161
161
|
|
|
162
|
-
|
|
163
|
-
<div id="preview-banner" class="preview-banner">
|
|
164
|
-
<div class="banner-content">
|
|
165
|
-
<i class="fas fa-exclamation-triangle banner-icon"></i>
|
|
166
|
-
<span class="banner-text">This documentation is a preview version - some content may be incomplete</span>
|
|
167
|
-
<button id="dismiss-banner" class="banner-dismiss" aria-label="Dismiss banner">
|
|
168
|
-
<i class="fas fa-times"></i>
|
|
169
|
-
</button>
|
|
170
|
-
</div>
|
|
171
|
-
</div>
|
|
162
|
+
|
|
172
163
|
|
|
173
164
|
<!-- Breadcrumbs -->
|
|
174
165
|
<nav class="breadcrumbs" id="breadcrumbs">
|
|
@@ -181,7 +172,7 @@
|
|
|
181
172
|
<aside class="sidebar">
|
|
182
173
|
<div class="sidebar-header">
|
|
183
174
|
<div class="filter-box">
|
|
184
|
-
<input type="text" placeholder="
|
|
175
|
+
<input type="text" placeholder="Search menu..." class="filter-input" id="nav-filter">
|
|
185
176
|
<i class="fas fa-search filter-icon"></i>
|
|
186
177
|
</div>
|
|
187
178
|
</div>
|
|
@@ -193,8 +184,10 @@
|
|
|
193
184
|
</a>
|
|
194
185
|
<div class="nav-content" >
|
|
195
186
|
<a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
|
|
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>
|
|
196
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>
|
|
197
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>
|
|
198
191
|
<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>
|
|
199
192
|
<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>
|
|
200
193
|
<div class="nav-section" data-level="1">
|
|
@@ -249,7 +242,8 @@
|
|
|
249
242
|
</a>
|
|
250
243
|
<div class="nav-content collapsed" id="nav-prompts-1">
|
|
251
244
|
<a href="/prompts/beautiful-documentation-design.html" class="nav-item" data-tooltip="🎨 Beautiful Documentation Design Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Beautiful Documentation Design</a>
|
|
252
|
-
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a
|
|
245
|
+
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a>
|
|
246
|
+
<a href="/prompts/project-rename-strategy-sasha-publish.html" class="nav-item" data-tooltip="This document outlines the comprehensive strategy for renaming the @knowcode/doc-builder project to "sasha-publish", including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
|
|
253
247
|
</nav>
|
|
254
248
|
<div class="resize-handle"></div>
|
|
255
249
|
</aside>
|
|
@@ -492,7 +486,8 @@ auth: {
|
|
|
492
486
|
window.docBuilderConfig = {
|
|
493
487
|
features: {
|
|
494
488
|
showPdfDownload: true,
|
|
495
|
-
menuDefaultOpen: false
|
|
489
|
+
menuDefaultOpen: false,
|
|
490
|
+
mermaidEnhanced: true
|
|
496
491
|
}
|
|
497
492
|
};
|
|
498
493
|
</script>
|
|
@@ -99,8 +99,8 @@
|
|
|
99
99
|
"name": "Knowcode Ltd",
|
|
100
100
|
"url": "https://knowcode.tech"
|
|
101
101
|
},
|
|
102
|
-
"datePublished": "2025-
|
|
103
|
-
"dateModified": "2025-
|
|
102
|
+
"datePublished": "2025-08-02T07:26:07.907Z",
|
|
103
|
+
"dateModified": "2025-08-02T07:26:07.907Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.15">Last updated: Aug 2, 2025, 07:26 AM UTC</span>
|
|
143
143
|
</div>
|
|
144
144
|
|
|
145
145
|
|
|
@@ -159,16 +159,7 @@
|
|
|
159
159
|
</div>
|
|
160
160
|
</header>
|
|
161
161
|
|
|
162
|
-
|
|
163
|
-
<div id="preview-banner" class="preview-banner">
|
|
164
|
-
<div class="banner-content">
|
|
165
|
-
<i class="fas fa-exclamation-triangle banner-icon"></i>
|
|
166
|
-
<span class="banner-text">This documentation is a preview version - some content may be incomplete</span>
|
|
167
|
-
<button id="dismiss-banner" class="banner-dismiss" aria-label="Dismiss banner">
|
|
168
|
-
<i class="fas fa-times"></i>
|
|
169
|
-
</button>
|
|
170
|
-
</div>
|
|
171
|
-
</div>
|
|
162
|
+
|
|
172
163
|
|
|
173
164
|
<!-- Breadcrumbs -->
|
|
174
165
|
<nav class="breadcrumbs" id="breadcrumbs">
|
|
@@ -181,7 +172,7 @@
|
|
|
181
172
|
<aside class="sidebar">
|
|
182
173
|
<div class="sidebar-header">
|
|
183
174
|
<div class="filter-box">
|
|
184
|
-
<input type="text" placeholder="
|
|
175
|
+
<input type="text" placeholder="Search menu..." class="filter-input" id="nav-filter">
|
|
185
176
|
<i class="fas fa-search filter-icon"></i>
|
|
186
177
|
</div>
|
|
187
178
|
</div>
|
|
@@ -193,8 +184,10 @@
|
|
|
193
184
|
</a>
|
|
194
185
|
<div class="nav-content" >
|
|
195
186
|
<a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
|
|
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>
|
|
196
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>
|
|
197
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>
|
|
198
191
|
<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>
|
|
199
192
|
<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>
|
|
200
193
|
<div class="nav-section" data-level="1">
|
|
@@ -249,7 +242,8 @@
|
|
|
249
242
|
</a>
|
|
250
243
|
<div class="nav-content collapsed" id="nav-prompts-1">
|
|
251
244
|
<a href="/prompts/beautiful-documentation-design.html" class="nav-item" data-tooltip="🎨 Beautiful Documentation Design Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Beautiful Documentation Design</a>
|
|
252
|
-
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a
|
|
245
|
+
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a>
|
|
246
|
+
<a href="/prompts/project-rename-strategy-sasha-publish.html" class="nav-item" data-tooltip="This document outlines the comprehensive strategy for renaming the @knowcode/doc-builder project to "sasha-publish", including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
|
|
253
247
|
</nav>
|
|
254
248
|
<div class="resize-handle"></div>
|
|
255
249
|
</aside>
|
|
@@ -1057,7 +1051,8 @@ The key to success is iterative refinement of your CLAUDE.md file to capture you
|
|
|
1057
1051
|
window.docBuilderConfig = {
|
|
1058
1052
|
features: {
|
|
1059
1053
|
showPdfDownload: true,
|
|
1060
|
-
menuDefaultOpen: false
|
|
1054
|
+
menuDefaultOpen: false,
|
|
1055
|
+
mermaidEnhanced: true
|
|
1061
1056
|
}
|
|
1062
1057
|
};
|
|
1063
1058
|
</script>
|
|
@@ -99,8 +99,8 @@
|
|
|
99
99
|
"name": "Knowcode Ltd",
|
|
100
100
|
"url": "https://knowcode.tech"
|
|
101
101
|
},
|
|
102
|
-
"datePublished": "2025-
|
|
103
|
-
"dateModified": "2025-
|
|
102
|
+
"datePublished": "2025-08-02T07:26:07.910Z",
|
|
103
|
+
"dateModified": "2025-08-02T07:26:07.910Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.15">Last updated: Aug 2, 2025, 07:26 AM UTC</span>
|
|
143
143
|
</div>
|
|
144
144
|
|
|
145
145
|
|
|
@@ -159,16 +159,7 @@
|
|
|
159
159
|
</div>
|
|
160
160
|
</header>
|
|
161
161
|
|
|
162
|
-
|
|
163
|
-
<div id="preview-banner" class="preview-banner">
|
|
164
|
-
<div class="banner-content">
|
|
165
|
-
<i class="fas fa-exclamation-triangle banner-icon"></i>
|
|
166
|
-
<span class="banner-text">This documentation is a preview version - some content may be incomplete</span>
|
|
167
|
-
<button id="dismiss-banner" class="banner-dismiss" aria-label="Dismiss banner">
|
|
168
|
-
<i class="fas fa-times"></i>
|
|
169
|
-
</button>
|
|
170
|
-
</div>
|
|
171
|
-
</div>
|
|
162
|
+
|
|
172
163
|
|
|
173
164
|
<!-- Breadcrumbs -->
|
|
174
165
|
<nav class="breadcrumbs" id="breadcrumbs">
|
|
@@ -181,7 +172,7 @@
|
|
|
181
172
|
<aside class="sidebar">
|
|
182
173
|
<div class="sidebar-header">
|
|
183
174
|
<div class="filter-box">
|
|
184
|
-
<input type="text" placeholder="
|
|
175
|
+
<input type="text" placeholder="Search menu..." class="filter-input" id="nav-filter">
|
|
185
176
|
<i class="fas fa-search filter-icon"></i>
|
|
186
177
|
</div>
|
|
187
178
|
</div>
|
|
@@ -193,8 +184,10 @@
|
|
|
193
184
|
</a>
|
|
194
185
|
<div class="nav-content" >
|
|
195
186
|
<a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
|
|
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>
|
|
196
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>
|
|
197
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>
|
|
198
191
|
<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>
|
|
199
192
|
<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>
|
|
200
193
|
<div class="nav-section" data-level="1">
|
|
@@ -249,7 +242,8 @@
|
|
|
249
242
|
</a>
|
|
250
243
|
<div class="nav-content collapsed" id="nav-prompts-1">
|
|
251
244
|
<a href="/prompts/beautiful-documentation-design.html" class="nav-item" data-tooltip="🎨 Beautiful Documentation Design Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Beautiful Documentation Design</a>
|
|
252
|
-
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a
|
|
245
|
+
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a>
|
|
246
|
+
<a href="/prompts/project-rename-strategy-sasha-publish.html" class="nav-item" data-tooltip="This document outlines the comprehensive strategy for renaming the @knowcode/doc-builder project to "sasha-publish", including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
|
|
253
247
|
</nav>
|
|
254
248
|
<div class="resize-handle"></div>
|
|
255
249
|
</aside>
|
|
@@ -432,7 +426,8 @@
|
|
|
432
426
|
window.docBuilderConfig = {
|
|
433
427
|
features: {
|
|
434
428
|
showPdfDownload: true,
|
|
435
|
-
menuDefaultOpen: false
|
|
429
|
+
menuDefaultOpen: false,
|
|
430
|
+
mermaidEnhanced: true
|
|
436
431
|
}
|
|
437
432
|
};
|
|
438
433
|
</script>
|