@knowcode/doc-builder 1.9.4 → 1.9.6
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.md +23 -1
- package/assets/css/notion-style.css +39 -30
- package/assets/js/main.js +2 -1
- package/html/README.html +43 -43
- package/html/css/notion-style.css +39 -30
- package/html/documentation-index.html +43 -43
- package/html/guides/authentication-default-change.html +43 -43
- package/html/guides/authentication-guide.html +43 -43
- package/html/guides/claude-workflow-guide.html +43 -43
- package/html/guides/documentation-standards.html +44 -44
- package/html/guides/html-embedding-guide.html +43 -43
- package/html/guides/image-modal-guide.html +43 -43
- package/html/guides/phosphor-icons-guide.html +43 -43
- package/html/guides/private-directory-authentication-troubleshooting.html +43 -43
- package/html/guides/private-directory-authentication.html +43 -43
- package/html/guides/public-site-deployment.html +43 -43
- package/html/guides/search-engine-verification-guide.html +43 -43
- package/html/guides/seo-guide.html +43 -43
- package/html/guides/seo-optimization-guide.html +43 -43
- package/html/guides/troubleshooting-guide.html +43 -43
- package/html/guides/windows-setup-guide.html +43 -43
- package/html/image-modal-test.html +43 -43
- package/html/index.html +43 -43
- package/html/js/main.js +2 -1
- package/html/private/cache-control-anti-pattern.html +43 -43
- package/html/private/launch/README.html +43 -43
- package/html/private/launch/auth-cleanup-summary.html +43 -43
- package/html/private/launch/bubble-plugin-specification.html +43 -43
- package/html/private/launch/go-to-market-strategy.html +43 -43
- package/html/private/launch/launch-announcements.html +43 -43
- package/html/private/launch/vercel-deployment-auth-setup.html +43 -43
- package/html/private/next-steps-walkthrough.html +43 -43
- package/html/private/supabase-auth-implementation-completed.html +43 -43
- package/html/private/supabase-auth-implementation-plan.html +43 -43
- package/html/private/supabase-auth-integration-plan.html +43 -43
- package/html/private/supabase-auth-setup-guide.html +43 -43
- package/html/private/test-private-doc.html +43 -43
- package/html/private/user-management-tooling.html +43 -43
- package/html/prompts/markdown-document-standards.html +43 -43
- package/html/sitemap.xml +56 -50
- package/html/test-status.html +281 -0
- package/html/vercel-cli-setup-guide.html +43 -43
- package/html/vercel-first-time-setup-guide.html +43 -43
- package/lib/config.js +3 -1
- package/lib/core-builder.js +147 -28
- package/lib/emoji-mapper.js +1 -0
- package/package.json +2 -4
- package/publish.sh +0 -316
package/CLAUDE.md
CHANGED
|
@@ -61,4 +61,26 @@ The system supports different icon weights via configuration:
|
|
|
61
61
|
- Generated timestamp
|
|
62
62
|
- Status field
|
|
63
63
|
- Verification status
|
|
64
|
-
- We do not want these metadata fields in the project documentation
|
|
64
|
+
- We do not want these metadata fields in the project documentation
|
|
65
|
+
|
|
66
|
+
## NPM Publishing
|
|
67
|
+
|
|
68
|
+
### Easy Publishing Workflow
|
|
69
|
+
|
|
70
|
+
The simple way to publish to npm:
|
|
71
|
+
|
|
72
|
+
1. **Update version** in `package.json`
|
|
73
|
+
2. **Commit changes**: `git add . && git commit -m "feat: description"`
|
|
74
|
+
3. **Publish**: `npm publish`
|
|
75
|
+
|
|
76
|
+
### Prerequisites
|
|
77
|
+
|
|
78
|
+
- Logged into npm: `npm whoami`
|
|
79
|
+
- Version not already published
|
|
80
|
+
- Working directory clean
|
|
81
|
+
|
|
82
|
+
### Notes
|
|
83
|
+
|
|
84
|
+
- Use `npm publish` directly instead of the interactive script
|
|
85
|
+
- No need for complex automation - npm handles everything
|
|
86
|
+
- Package automatically includes all necessary files via package.json
|
|
@@ -1097,11 +1097,11 @@ tr:hover {
|
|
|
1097
1097
|
/* Mermaid Full Screen Viewer */
|
|
1098
1098
|
.mermaid-container {
|
|
1099
1099
|
position: relative;
|
|
1100
|
-
margin: var(--space-
|
|
1101
|
-
border:
|
|
1102
|
-
border-radius:
|
|
1103
|
-
|
|
1104
|
-
|
|
1100
|
+
margin: var(--space-6) 0;
|
|
1101
|
+
border: none;
|
|
1102
|
+
border-radius: 0;
|
|
1103
|
+
background: transparent;
|
|
1104
|
+
overflow: visible;
|
|
1105
1105
|
}
|
|
1106
1106
|
|
|
1107
1107
|
.mermaid-title {
|
|
@@ -1114,14 +1114,27 @@ tr:hover {
|
|
|
1114
1114
|
}
|
|
1115
1115
|
|
|
1116
1116
|
.mermaid-toolbar {
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1117
|
+
opacity: 0;
|
|
1118
|
+
transition: opacity 0.2s ease;
|
|
1119
|
+
position: absolute;
|
|
1120
|
+
top: var(--space-2);
|
|
1121
|
+
right: var(--space-2);
|
|
1122
|
+
background: rgba(255, 255, 255, 0.95);
|
|
1123
|
+
backdrop-filter: blur(4px);
|
|
1124
|
+
border-radius: var(--radius-md);
|
|
1125
|
+
border: 1px solid var(--color-border-muted);
|
|
1126
|
+
padding: var(--space-1);
|
|
1127
|
+
z-index: 10;
|
|
1128
|
+
box-shadow: var(--shadow-sm);
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.mermaid-container:hover .mermaid-toolbar {
|
|
1132
|
+
opacity: 1;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
/* Subtle hover effects for diagram containers */
|
|
1136
|
+
.mermaid-container:hover {
|
|
1137
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
|
1125
1138
|
}
|
|
1126
1139
|
|
|
1127
1140
|
.mermaid-actions {
|
|
@@ -1130,32 +1143,28 @@ tr:hover {
|
|
|
1130
1143
|
}
|
|
1131
1144
|
|
|
1132
1145
|
.mermaid-btn {
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
border:
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
color: var(--color-text-secondary);
|
|
1141
|
-
text-decoration: none;
|
|
1142
|
-
font-size: var(--text-sm);
|
|
1146
|
+
width: 32px;
|
|
1147
|
+
height: 32px;
|
|
1148
|
+
padding: 0;
|
|
1149
|
+
border: none;
|
|
1150
|
+
border-radius: var(--radius-sm);
|
|
1151
|
+
background: transparent;
|
|
1152
|
+
color: var(--color-text-muted);
|
|
1143
1153
|
cursor: pointer;
|
|
1144
1154
|
transition: all var(--duration-fast);
|
|
1145
|
-
|
|
1155
|
+
display: flex;
|
|
1156
|
+
align-items: center;
|
|
1157
|
+
justify-content: center;
|
|
1146
1158
|
}
|
|
1147
1159
|
|
|
1148
1160
|
.mermaid-btn:hover {
|
|
1149
1161
|
background: var(--color-accent-blue);
|
|
1150
|
-
color:
|
|
1151
|
-
|
|
1152
|
-
transform: translateY(-1px);
|
|
1153
|
-
box-shadow: var(--shadow-sm);
|
|
1162
|
+
color: white;
|
|
1163
|
+
transform: scale(1.05);
|
|
1154
1164
|
}
|
|
1155
1165
|
|
|
1156
1166
|
.mermaid-btn i {
|
|
1157
|
-
font-size:
|
|
1158
|
-
flex-shrink: 0;
|
|
1167
|
+
font-size: 14px;
|
|
1159
1168
|
}
|
|
1160
1169
|
|
|
1161
1170
|
.mermaid-wrapper {
|
package/assets/js/main.js
CHANGED
|
@@ -85,7 +85,8 @@ function initializeMermaidFullScreen() {
|
|
|
85
85
|
// Full screen button
|
|
86
86
|
const fullScreenBtn = document.createElement('button');
|
|
87
87
|
fullScreenBtn.className = 'mermaid-btn';
|
|
88
|
-
fullScreenBtn.innerHTML = '<i class="fas fa-expand"></i>
|
|
88
|
+
fullScreenBtn.innerHTML = '<i class="fas fa-expand"></i>';
|
|
89
|
+
fullScreenBtn.title = 'Full Screen';
|
|
89
90
|
fullScreenBtn.addEventListener('click', () => openMermaidFullScreen(mermaidDiv, index));
|
|
90
91
|
|
|
91
92
|
actions.appendChild(fullScreenBtn);
|
package/html/README.html
CHANGED
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-29T09:30:31.298Z",
|
|
102
|
+
"dateModified": "2025-07-29T09:30:31.298Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/README.html"
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
<div class="header-actions">
|
|
134
134
|
<div class="deployment-info">
|
|
135
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
135
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 09:30 AM UTC</span>
|
|
136
136
|
</div>
|
|
137
137
|
|
|
138
138
|
|
|
@@ -182,64 +182,64 @@
|
|
|
182
182
|
|
|
183
183
|
<div class="nav-section" data-level="0">
|
|
184
184
|
<a class="nav-title expanded" href="/README.html" >
|
|
185
|
-
<i class="
|
|
185
|
+
<i class="ph ph-house"></i> Documentation
|
|
186
186
|
</a>
|
|
187
187
|
<div class="nav-content" >
|
|
188
|
-
<a href="/README.html" class="nav-item active" data-tooltip="@knowcode/doc-builder."><i class="
|
|
189
|
-
<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="
|
|
190
|
-
<a href="/image-modal-test.html" class="nav-item" data-tooltip="This document tests the new image modal functionality in doc-builder."><i class="
|
|
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="
|
|
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="
|
|
188
|
+
<a href="/README.html" class="nav-item active" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
|
|
189
|
+
<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>
|
|
190
|
+
<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>
|
|
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>
|
|
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>
|
|
193
193
|
<div class="nav-section" data-level="1">
|
|
194
194
|
<a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
|
|
195
|
-
<i class="
|
|
195
|
+
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-book"></i> Guides
|
|
196
196
|
</a>
|
|
197
197
|
<div class="nav-content" id="nav-guides-1">
|
|
198
|
-
<a href="/guides/authentication-default-change.html" class="nav-item" data-tooltip="Starting from version 1.7.4, @knowcode/doc-builder now defaults to no authentication for all documentation sites."><i class="
|
|
199
|
-
<a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase - a secure, scalable authentication platform."><i class="
|
|
200
|
-
<a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="
|
|
201
|
-
<a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="
|
|
202
|
-
<a href="/guides/html-embedding-guide.html" class="nav-item" data-tooltip="Starting from version 1.9.2, doc-builder treats HTML files ( and ) as attachments that are automatically copied to your output directory during the..."><i class="
|
|
203
|
-
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="
|
|
204
|
-
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="
|
|
205
|
-
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="
|
|
206
|
-
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="
|
|
207
|
-
<a href="/guides/public-site-deployment.html" class="nav-item" data-tooltip="The @knowcode/doc-builder now supports deploying public documentation sites without authentication."><i class="
|
|
208
|
-
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="
|
|
209
|
-
<a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="
|
|
210
|
-
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="
|
|
211
|
-
<a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="
|
|
212
|
-
<a href="/guides/windows-setup-guide.html" class="nav-item" data-tooltip="This guide helps Windows users set up the complete AI-powered documentation workflow using Claude Code, @knowcode/doc-builder, and Vercel."><i class="
|
|
198
|
+
<a href="/guides/authentication-default-change.html" class="nav-item" data-tooltip="Starting from version 1.7.4, @knowcode/doc-builder now defaults to no authentication for all documentation sites."><i class="ph ph-file-text"></i> Authentication Default Change</a>
|
|
199
|
+
<a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase - a secure, scalable authentication platform."><i class="ph ph-check-circle" style="color: #059669;"></i> Authentication Guide</a>
|
|
200
|
+
<a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Claude Workflow Guide</a>
|
|
201
|
+
<a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Standards</a>
|
|
202
|
+
<a href="/guides/html-embedding-guide.html" class="nav-item" data-tooltip="Starting from version 1.9.2, doc-builder treats HTML files ( and ) as attachments that are automatically copied to your output directory during the..."><i class="ph ph-check-circle" style="color: #059669;"></i> Html Embedding Guide</a>
|
|
203
|
+
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="ph ph-check-circle" style="color: #059669;"></i> Image Modal Guide</a>
|
|
204
|
+
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Phosphor Icons Guide</a>
|
|
205
|
+
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="ph ph-check-circle" style="color: #059669;"></i> Private Directory Authentication</a>
|
|
206
|
+
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="ph ph-check-circle" style="color: #059669;"></i> Private Directory Authentication Troubleshooting</a>
|
|
207
|
+
<a href="/guides/public-site-deployment.html" class="nav-item" data-tooltip="The @knowcode/doc-builder now supports deploying public documentation sites without authentication."><i class="ph ph-check-circle" style="color: #059669;"></i> Public Site Deployment</a>
|
|
208
|
+
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="ph ph-check-circle" style="color: #059669;"></i> Search Engine Verification Guide</a>
|
|
209
|
+
<a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Guide</a>
|
|
210
|
+
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Comprehensive guide to optimizing documentation for search engines. Learn SEO best practices, use built-in features, and improve your rankings."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Optimization Guide</a>
|
|
211
|
+
<a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Troubleshooting Guide</a>
|
|
212
|
+
<a href="/guides/windows-setup-guide.html" class="nav-item" data-tooltip="This guide helps Windows users set up the complete AI-powered documentation workflow using Claude Code, @knowcode/doc-builder, and Vercel."><i class="ph ph-check-circle" style="color: #059669;"></i> Windows Setup Guide</a></div></div>
|
|
213
213
|
<div class="nav-section private-nav" data-level="1">
|
|
214
214
|
<a class="nav-title collapsible expanded" href="#" data-target="nav-private-1" >
|
|
215
|
-
<i class="
|
|
215
|
+
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-lock"></i> Private
|
|
216
216
|
</a>
|
|
217
217
|
<div class="nav-content" id="nav-private-1">
|
|
218
|
-
<a href="/private/cache-control-anti-pattern.html" class="nav-item" data-tooltip="Cache Control Anti-Pattern: Why Aggressive Cache-Busting is Bad for Documentation Sites."><i class="
|
|
219
|
-
<a href="/private/next-steps-walkthrough.html" class="nav-item" data-tooltip="Now that we've implemented Supabase authentication, let's walk through testing the implementation and preparing for deployment."><i class="
|
|
220
|
-
<a href="/private/supabase-auth-implementation-completed.html" class="nav-item" data-tooltip="This document records the successful implementation of Supabase authentication in @knowcode/doc-builder v1.7.5+."><i class="
|
|
221
|
-
<a href="/private/supabase-auth-implementation-plan.html" class="nav-item" data-tooltip="Supabase Auth Implementation Plan for @knowcode/doc-builder."><i class="
|
|
222
|
-
<a href="/private/supabase-auth-integration-plan.html" class="nav-item" data-tooltip="Supabase Authentication Integration Plan for @knowcode/doc-builder."><i class="
|
|
223
|
-
<a href="/private/supabase-auth-setup-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase."><i class="
|
|
224
|
-
<a href="/private/test-private-doc.html" class="nav-item" data-tooltip="Test Private Document."><i class="
|
|
225
|
-
<a href="/private/user-management-tooling.html" class="nav-item" data-tooltip="The user management system is a set of tools designed to manage user access to Supabase-authenticated documentation sites built with."><i class="
|
|
218
|
+
<a href="/private/cache-control-anti-pattern.html" class="nav-item" data-tooltip="Cache Control Anti-Pattern: Why Aggressive Cache-Busting is Bad for Documentation Sites."><i class="ph ph-check-circle" style="color: #059669;"></i> Cache Control Anti Pattern</a>
|
|
219
|
+
<a href="/private/next-steps-walkthrough.html" class="nav-item" data-tooltip="Now that we've implemented Supabase authentication, let's walk through testing the implementation and preparing for deployment."><i class="ph ph-check-circle" style="color: #059669;"></i> Next Steps Walkthrough</a>
|
|
220
|
+
<a href="/private/supabase-auth-implementation-completed.html" class="nav-item" data-tooltip="This document records the successful implementation of Supabase authentication in @knowcode/doc-builder v1.7.5+."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Auth Implementation Completed</a>
|
|
221
|
+
<a href="/private/supabase-auth-implementation-plan.html" class="nav-item" data-tooltip="Supabase Auth Implementation Plan for @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Auth Implementation Plan</a>
|
|
222
|
+
<a href="/private/supabase-auth-integration-plan.html" class="nav-item" data-tooltip="Supabase Authentication Integration Plan for @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Auth Integration Plan</a>
|
|
223
|
+
<a href="/private/supabase-auth-setup-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Auth Setup Guide</a>
|
|
224
|
+
<a href="/private/test-private-doc.html" class="nav-item" data-tooltip="Test Private Document."><i class="ph ph-file-text"></i> Test Private Doc</a>
|
|
225
|
+
<a href="/private/user-management-tooling.html" class="nav-item" data-tooltip="The user management system is a set of tools designed to manage user access to Supabase-authenticated documentation sites built with."><i class="ph ph-check-circle" style="color: #059669;"></i> User Management Tooling</a></div></div>
|
|
226
226
|
<div class="nav-section private-nav" data-level="2">
|
|
227
227
|
<a class="nav-title collapsible" href="/private/launch/README.html" data-target="nav-private-launch-2" >
|
|
228
|
-
<i class="
|
|
228
|
+
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-rocket-launch"></i> Launch
|
|
229
229
|
</a>
|
|
230
230
|
<div class="nav-content collapsed" id="nav-private-launch-2">
|
|
231
|
-
<a href="/private/launch/README.html" class="nav-item" data-tooltip="This directory contains all documentation related to the commercial launch of @knowcode/doc-builder, including go-to-market strategy, platform..."><i class="
|
|
232
|
-
<a href="/private/launch/auth-cleanup-summary.html" class="nav-item" data-tooltip="All references to the old client-side authentication system have been removed from @knowcode/doc-builder."><i class="
|
|
233
|
-
<a href="/private/launch/bubble-plugin-specification.html" class="nav-item" data-tooltip="This document outlines the technical specification for creating a Bubble.io plugin that integrates @knowcode/doc-builder, enabling Bubble developers..."><i class="
|
|
234
|
-
<a href="/private/launch/go-to-market-strategy.html" class="nav-item" data-tooltip="Go-to-Market Strategy & Product Launch Plan."><i class="
|
|
235
|
-
<a href="/private/launch/launch-announcements.html" class="nav-item" data-tooltip="This document contains ready-to-use announcement templates for launching @knowcode/doc-builder across various platforms and channels."><i class="
|
|
236
|
-
<a href="/private/launch/vercel-deployment-auth-setup.html" class="nav-item" data-tooltip="Vercel Deployment Authentication Setup Guide."><i class="
|
|
231
|
+
<a href="/private/launch/README.html" class="nav-item" data-tooltip="This directory contains all documentation related to the commercial launch of @knowcode/doc-builder, including go-to-market strategy, platform..."><i class="ph ph-check-circle" style="color: #059669;"></i> Launch Overview</a>
|
|
232
|
+
<a href="/private/launch/auth-cleanup-summary.html" class="nav-item" data-tooltip="All references to the old client-side authentication system have been removed from @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Auth Cleanup Summary</a>
|
|
233
|
+
<a href="/private/launch/bubble-plugin-specification.html" class="nav-item" data-tooltip="This document outlines the technical specification for creating a Bubble.io plugin that integrates @knowcode/doc-builder, enabling Bubble developers..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Bubble Plugin Specification</a>
|
|
234
|
+
<a href="/private/launch/go-to-market-strategy.html" class="nav-item" data-tooltip="Go-to-Market Strategy & Product Launch Plan."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Go To Market Strategy</a>
|
|
235
|
+
<a href="/private/launch/launch-announcements.html" class="nav-item" data-tooltip="This document contains ready-to-use announcement templates for launching @knowcode/doc-builder across various platforms and channels."><i class="ph ph-check-circle" style="color: #059669;"></i> Launch Announcements</a>
|
|
236
|
+
<a href="/private/launch/vercel-deployment-auth-setup.html" class="nav-item" data-tooltip="Vercel Deployment Authentication Setup Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel Deployment Auth Setup</a></div></div>
|
|
237
237
|
<div class="nav-section" data-level="1">
|
|
238
238
|
<a class="nav-title collapsible expanded" href="#" data-target="nav-prompts-1" >
|
|
239
|
-
<i class="
|
|
239
|
+
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-chat-circle-dots"></i> Prompts
|
|
240
240
|
</a>
|
|
241
241
|
<div class="nav-content" id="nav-prompts-1">
|
|
242
|
-
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="
|
|
242
|
+
<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></div></div>
|
|
243
243
|
</nav>
|
|
244
244
|
<div class="resize-handle"></div>
|
|
245
245
|
</aside>
|
|
@@ -1097,11 +1097,11 @@ tr:hover {
|
|
|
1097
1097
|
/* Mermaid Full Screen Viewer */
|
|
1098
1098
|
.mermaid-container {
|
|
1099
1099
|
position: relative;
|
|
1100
|
-
margin: var(--space-
|
|
1101
|
-
border:
|
|
1102
|
-
border-radius:
|
|
1103
|
-
|
|
1104
|
-
|
|
1100
|
+
margin: var(--space-6) 0;
|
|
1101
|
+
border: none;
|
|
1102
|
+
border-radius: 0;
|
|
1103
|
+
background: transparent;
|
|
1104
|
+
overflow: visible;
|
|
1105
1105
|
}
|
|
1106
1106
|
|
|
1107
1107
|
.mermaid-title {
|
|
@@ -1114,14 +1114,27 @@ tr:hover {
|
|
|
1114
1114
|
}
|
|
1115
1115
|
|
|
1116
1116
|
.mermaid-toolbar {
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1117
|
+
opacity: 0;
|
|
1118
|
+
transition: opacity 0.2s ease;
|
|
1119
|
+
position: absolute;
|
|
1120
|
+
top: var(--space-2);
|
|
1121
|
+
right: var(--space-2);
|
|
1122
|
+
background: rgba(255, 255, 255, 0.95);
|
|
1123
|
+
backdrop-filter: blur(4px);
|
|
1124
|
+
border-radius: var(--radius-md);
|
|
1125
|
+
border: 1px solid var(--color-border-muted);
|
|
1126
|
+
padding: var(--space-1);
|
|
1127
|
+
z-index: 10;
|
|
1128
|
+
box-shadow: var(--shadow-sm);
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.mermaid-container:hover .mermaid-toolbar {
|
|
1132
|
+
opacity: 1;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
/* Subtle hover effects for diagram containers */
|
|
1136
|
+
.mermaid-container:hover {
|
|
1137
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
|
1125
1138
|
}
|
|
1126
1139
|
|
|
1127
1140
|
.mermaid-actions {
|
|
@@ -1130,32 +1143,28 @@ tr:hover {
|
|
|
1130
1143
|
}
|
|
1131
1144
|
|
|
1132
1145
|
.mermaid-btn {
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
border:
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
color: var(--color-text-secondary);
|
|
1141
|
-
text-decoration: none;
|
|
1142
|
-
font-size: var(--text-sm);
|
|
1146
|
+
width: 32px;
|
|
1147
|
+
height: 32px;
|
|
1148
|
+
padding: 0;
|
|
1149
|
+
border: none;
|
|
1150
|
+
border-radius: var(--radius-sm);
|
|
1151
|
+
background: transparent;
|
|
1152
|
+
color: var(--color-text-muted);
|
|
1143
1153
|
cursor: pointer;
|
|
1144
1154
|
transition: all var(--duration-fast);
|
|
1145
|
-
|
|
1155
|
+
display: flex;
|
|
1156
|
+
align-items: center;
|
|
1157
|
+
justify-content: center;
|
|
1146
1158
|
}
|
|
1147
1159
|
|
|
1148
1160
|
.mermaid-btn:hover {
|
|
1149
1161
|
background: var(--color-accent-blue);
|
|
1150
|
-
color:
|
|
1151
|
-
|
|
1152
|
-
transform: translateY(-1px);
|
|
1153
|
-
box-shadow: var(--shadow-sm);
|
|
1162
|
+
color: white;
|
|
1163
|
+
transform: scale(1.05);
|
|
1154
1164
|
}
|
|
1155
1165
|
|
|
1156
1166
|
.mermaid-btn i {
|
|
1157
|
-
font-size:
|
|
1158
|
-
flex-shrink: 0;
|
|
1167
|
+
font-size: 14px;
|
|
1159
1168
|
}
|
|
1160
1169
|
|
|
1161
1170
|
.mermaid-wrapper {
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-29T09:30:31.310Z",
|
|
102
|
+
"dateModified": "2025-07-29T09:30:31.310Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
<div class="header-actions">
|
|
134
134
|
<div class="deployment-info">
|
|
135
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
135
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 09:30 AM UTC</span>
|
|
136
136
|
</div>
|
|
137
137
|
|
|
138
138
|
|
|
@@ -182,64 +182,64 @@
|
|
|
182
182
|
|
|
183
183
|
<div class="nav-section" data-level="0">
|
|
184
184
|
<a class="nav-title" href="/README.html" >
|
|
185
|
-
<i class="
|
|
185
|
+
<i class="ph ph-house"></i> Documentation
|
|
186
186
|
</a>
|
|
187
187
|
<div class="nav-content" >
|
|
188
|
-
<a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="
|
|
189
|
-
<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="
|
|
190
|
-
<a href="/image-modal-test.html" class="nav-item" data-tooltip="This document tests the new image modal functionality in doc-builder."><i class="
|
|
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="
|
|
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="
|
|
188
|
+
<a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
|
|
189
|
+
<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>
|
|
190
|
+
<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>
|
|
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>
|
|
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>
|
|
193
193
|
<div class="nav-section" data-level="1">
|
|
194
194
|
<a class="nav-title collapsible" href="#" data-target="nav-guides-1" >
|
|
195
|
-
<i class="
|
|
195
|
+
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-book"></i> Guides
|
|
196
196
|
</a>
|
|
197
197
|
<div class="nav-content collapsed" id="nav-guides-1">
|
|
198
|
-
<a href="/guides/authentication-default-change.html" class="nav-item" data-tooltip="Starting from version 1.7.4, @knowcode/doc-builder now defaults to no authentication for all documentation sites."><i class="
|
|
199
|
-
<a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase - a secure, scalable authentication platform."><i class="
|
|
200
|
-
<a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="
|
|
201
|
-
<a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="
|
|
202
|
-
<a href="/guides/html-embedding-guide.html" class="nav-item" data-tooltip="Starting from version 1.9.2, doc-builder treats HTML files ( and ) as attachments that are automatically copied to your output directory during the..."><i class="
|
|
203
|
-
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="
|
|
204
|
-
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="
|
|
205
|
-
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="
|
|
206
|
-
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="
|
|
207
|
-
<a href="/guides/public-site-deployment.html" class="nav-item" data-tooltip="The @knowcode/doc-builder now supports deploying public documentation sites without authentication."><i class="
|
|
208
|
-
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="
|
|
209
|
-
<a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="
|
|
210
|
-
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="
|
|
211
|
-
<a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="
|
|
212
|
-
<a href="/guides/windows-setup-guide.html" class="nav-item" data-tooltip="This guide helps Windows users set up the complete AI-powered documentation workflow using Claude Code, @knowcode/doc-builder, and Vercel."><i class="
|
|
198
|
+
<a href="/guides/authentication-default-change.html" class="nav-item" data-tooltip="Starting from version 1.7.4, @knowcode/doc-builder now defaults to no authentication for all documentation sites."><i class="ph ph-file-text"></i> Authentication Default Change</a>
|
|
199
|
+
<a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase - a secure, scalable authentication platform."><i class="ph ph-check-circle" style="color: #059669;"></i> Authentication Guide</a>
|
|
200
|
+
<a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Claude Workflow Guide</a>
|
|
201
|
+
<a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Standards</a>
|
|
202
|
+
<a href="/guides/html-embedding-guide.html" class="nav-item" data-tooltip="Starting from version 1.9.2, doc-builder treats HTML files ( and ) as attachments that are automatically copied to your output directory during the..."><i class="ph ph-check-circle" style="color: #059669;"></i> Html Embedding Guide</a>
|
|
203
|
+
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="ph ph-check-circle" style="color: #059669;"></i> Image Modal Guide</a>
|
|
204
|
+
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Phosphor Icons Guide</a>
|
|
205
|
+
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="ph ph-check-circle" style="color: #059669;"></i> Private Directory Authentication</a>
|
|
206
|
+
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="ph ph-check-circle" style="color: #059669;"></i> Private Directory Authentication Troubleshooting</a>
|
|
207
|
+
<a href="/guides/public-site-deployment.html" class="nav-item" data-tooltip="The @knowcode/doc-builder now supports deploying public documentation sites without authentication."><i class="ph ph-check-circle" style="color: #059669;"></i> Public Site Deployment</a>
|
|
208
|
+
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="ph ph-check-circle" style="color: #059669;"></i> Search Engine Verification Guide</a>
|
|
209
|
+
<a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Guide</a>
|
|
210
|
+
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Comprehensive guide to optimizing documentation for search engines. Learn SEO best practices, use built-in features, and improve your rankings."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Optimization Guide</a>
|
|
211
|
+
<a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Troubleshooting Guide</a>
|
|
212
|
+
<a href="/guides/windows-setup-guide.html" class="nav-item" data-tooltip="This guide helps Windows users set up the complete AI-powered documentation workflow using Claude Code, @knowcode/doc-builder, and Vercel."><i class="ph ph-check-circle" style="color: #059669;"></i> Windows Setup Guide</a></div></div>
|
|
213
213
|
<div class="nav-section private-nav" data-level="1">
|
|
214
214
|
<a class="nav-title collapsible" href="#" data-target="nav-private-1" >
|
|
215
|
-
<i class="
|
|
215
|
+
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-lock"></i> Private
|
|
216
216
|
</a>
|
|
217
217
|
<div class="nav-content collapsed" id="nav-private-1">
|
|
218
|
-
<a href="/private/cache-control-anti-pattern.html" class="nav-item" data-tooltip="Cache Control Anti-Pattern: Why Aggressive Cache-Busting is Bad for Documentation Sites."><i class="
|
|
219
|
-
<a href="/private/next-steps-walkthrough.html" class="nav-item" data-tooltip="Now that we've implemented Supabase authentication, let's walk through testing the implementation and preparing for deployment."><i class="
|
|
220
|
-
<a href="/private/supabase-auth-implementation-completed.html" class="nav-item" data-tooltip="This document records the successful implementation of Supabase authentication in @knowcode/doc-builder v1.7.5+."><i class="
|
|
221
|
-
<a href="/private/supabase-auth-implementation-plan.html" class="nav-item" data-tooltip="Supabase Auth Implementation Plan for @knowcode/doc-builder."><i class="
|
|
222
|
-
<a href="/private/supabase-auth-integration-plan.html" class="nav-item" data-tooltip="Supabase Authentication Integration Plan for @knowcode/doc-builder."><i class="
|
|
223
|
-
<a href="/private/supabase-auth-setup-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase."><i class="
|
|
224
|
-
<a href="/private/test-private-doc.html" class="nav-item" data-tooltip="Test Private Document."><i class="
|
|
225
|
-
<a href="/private/user-management-tooling.html" class="nav-item" data-tooltip="The user management system is a set of tools designed to manage user access to Supabase-authenticated documentation sites built with."><i class="
|
|
218
|
+
<a href="/private/cache-control-anti-pattern.html" class="nav-item" data-tooltip="Cache Control Anti-Pattern: Why Aggressive Cache-Busting is Bad for Documentation Sites."><i class="ph ph-check-circle" style="color: #059669;"></i> Cache Control Anti Pattern</a>
|
|
219
|
+
<a href="/private/next-steps-walkthrough.html" class="nav-item" data-tooltip="Now that we've implemented Supabase authentication, let's walk through testing the implementation and preparing for deployment."><i class="ph ph-check-circle" style="color: #059669;"></i> Next Steps Walkthrough</a>
|
|
220
|
+
<a href="/private/supabase-auth-implementation-completed.html" class="nav-item" data-tooltip="This document records the successful implementation of Supabase authentication in @knowcode/doc-builder v1.7.5+."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Auth Implementation Completed</a>
|
|
221
|
+
<a href="/private/supabase-auth-implementation-plan.html" class="nav-item" data-tooltip="Supabase Auth Implementation Plan for @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Auth Implementation Plan</a>
|
|
222
|
+
<a href="/private/supabase-auth-integration-plan.html" class="nav-item" data-tooltip="Supabase Authentication Integration Plan for @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Auth Integration Plan</a>
|
|
223
|
+
<a href="/private/supabase-auth-setup-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Auth Setup Guide</a>
|
|
224
|
+
<a href="/private/test-private-doc.html" class="nav-item" data-tooltip="Test Private Document."><i class="ph ph-file-text"></i> Test Private Doc</a>
|
|
225
|
+
<a href="/private/user-management-tooling.html" class="nav-item" data-tooltip="The user management system is a set of tools designed to manage user access to Supabase-authenticated documentation sites built with."><i class="ph ph-check-circle" style="color: #059669;"></i> User Management Tooling</a></div></div>
|
|
226
226
|
<div class="nav-section private-nav" data-level="2">
|
|
227
227
|
<a class="nav-title collapsible" href="/private/launch/README.html" data-target="nav-private-launch-2" >
|
|
228
|
-
<i class="
|
|
228
|
+
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-rocket-launch"></i> Launch
|
|
229
229
|
</a>
|
|
230
230
|
<div class="nav-content collapsed" id="nav-private-launch-2">
|
|
231
|
-
<a href="/private/launch/README.html" class="nav-item" data-tooltip="This directory contains all documentation related to the commercial launch of @knowcode/doc-builder, including go-to-market strategy, platform..."><i class="
|
|
232
|
-
<a href="/private/launch/auth-cleanup-summary.html" class="nav-item" data-tooltip="All references to the old client-side authentication system have been removed from @knowcode/doc-builder."><i class="
|
|
233
|
-
<a href="/private/launch/bubble-plugin-specification.html" class="nav-item" data-tooltip="This document outlines the technical specification for creating a Bubble.io plugin that integrates @knowcode/doc-builder, enabling Bubble developers..."><i class="
|
|
234
|
-
<a href="/private/launch/go-to-market-strategy.html" class="nav-item" data-tooltip="Go-to-Market Strategy & Product Launch Plan."><i class="
|
|
235
|
-
<a href="/private/launch/launch-announcements.html" class="nav-item" data-tooltip="This document contains ready-to-use announcement templates for launching @knowcode/doc-builder across various platforms and channels."><i class="
|
|
236
|
-
<a href="/private/launch/vercel-deployment-auth-setup.html" class="nav-item" data-tooltip="Vercel Deployment Authentication Setup Guide."><i class="
|
|
231
|
+
<a href="/private/launch/README.html" class="nav-item" data-tooltip="This directory contains all documentation related to the commercial launch of @knowcode/doc-builder, including go-to-market strategy, platform..."><i class="ph ph-check-circle" style="color: #059669;"></i> Launch Overview</a>
|
|
232
|
+
<a href="/private/launch/auth-cleanup-summary.html" class="nav-item" data-tooltip="All references to the old client-side authentication system have been removed from @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Auth Cleanup Summary</a>
|
|
233
|
+
<a href="/private/launch/bubble-plugin-specification.html" class="nav-item" data-tooltip="This document outlines the technical specification for creating a Bubble.io plugin that integrates @knowcode/doc-builder, enabling Bubble developers..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Bubble Plugin Specification</a>
|
|
234
|
+
<a href="/private/launch/go-to-market-strategy.html" class="nav-item" data-tooltip="Go-to-Market Strategy & Product Launch Plan."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Go To Market Strategy</a>
|
|
235
|
+
<a href="/private/launch/launch-announcements.html" class="nav-item" data-tooltip="This document contains ready-to-use announcement templates for launching @knowcode/doc-builder across various platforms and channels."><i class="ph ph-check-circle" style="color: #059669;"></i> Launch Announcements</a>
|
|
236
|
+
<a href="/private/launch/vercel-deployment-auth-setup.html" class="nav-item" data-tooltip="Vercel Deployment Authentication Setup Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel Deployment Auth Setup</a></div></div>
|
|
237
237
|
<div class="nav-section" data-level="1">
|
|
238
238
|
<a class="nav-title collapsible" href="#" data-target="nav-prompts-1" >
|
|
239
|
-
<i class="
|
|
239
|
+
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-chat-circle-dots"></i> Prompts
|
|
240
240
|
</a>
|
|
241
241
|
<div class="nav-content collapsed" id="nav-prompts-1">
|
|
242
|
-
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="
|
|
242
|
+
<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></div></div>
|
|
243
243
|
</nav>
|
|
244
244
|
<div class="resize-handle"></div>
|
|
245
245
|
</aside>
|