@knowcode/doc-builder 1.5.20 → 1.5.22
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/CLAUDE.md +7 -301
- package/CONTRIBUTING.md +148 -0
- package/GITHUB_SETUP.md +203 -0
- package/LICENSE +21 -0
- package/README.md +6 -1
- package/Screenshot 2025-07-22 at 19.51.21.png +0 -0
- package/assets/css/notion-style.css +42 -3
- package/html/README.html +23 -33
- package/html/css/notion-style.css +39 -0
- package/html/documentation-index.html +16 -8
- package/html/guides/authentication-guide.html +16 -8
- package/html/guides/claude-workflow-guide.html +16 -8
- package/html/guides/documentation-standards.html +16 -8
- package/html/guides/google-site-verification-guide.html +12 -3
- package/html/guides/phosphor-icons-guide.html +16 -8
- package/html/guides/seo-guide.html +16 -8
- package/html/guides/seo-optimization-guide.html +12 -4
- package/html/guides/troubleshooting-guide.html +16 -8
- package/html/guides/windows-setup-guide.html +16 -8
- package/html/index.html +23 -33
- package/html/launch/README.html +277 -0
- package/html/launch/bubble-plugin-specification.html +913 -0
- package/html/launch/go-to-market-strategy.html +643 -0
- package/html/launch/launch-announcements.html +573 -0
- package/html/sitemap.xml +41 -17
- package/html/vercel-cli-setup-guide.html +16 -8
- package/html/vercel-first-time-setup-guide.html +16 -8
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Beautiful documentation with the least effort possible. A zero-configuration documentation builder that transforms markdown files into stunning static sites.
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/@knowcode/doc-builder)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
[](https://github.com/wapdat/doc-builder/stargazers)
|
|
8
|
+
[](https://github.com/wapdat/doc-builder/issues)
|
|
9
|
+
|
|
5
10
|
<div align="center">
|
|
6
11
|
|
|
7
12
|
🔗 **[View Live Example](https://doc-builder-delta.vercel.app)** | 📦 **[NPM Package](https://www.npmjs.com/package/@knowcode/doc-builder)** | 📚 **[Documentation](https://doc-builder-delta.vercel.app)**
|
|
@@ -555,7 +560,7 @@ MIT License - See [LICENSE](LICENSE) file for details
|
|
|
555
560
|
|
|
556
561
|
### Quick Links
|
|
557
562
|
|
|
558
|
-
[**NPM Package**](https://www.npmjs.com/package/@knowcode/doc-builder) | [**Live Demo**](https://doc-builder-delta.vercel.app) | [**Report Issues**](https://github.com/
|
|
563
|
+
[**NPM Package**](https://www.npmjs.com/package/@knowcode/doc-builder) | [**Live Demo**](https://doc-builder-delta.vercel.app) | [**Report Issues**](https://github.com/wapdat/doc-builder/issues) | [**Changelog**](CHANGELOG.md)
|
|
559
564
|
|
|
560
565
|
Made with ❤️ by the @knowcode team
|
|
561
566
|
|
|
Binary file
|
|
@@ -704,6 +704,45 @@ table th > * {
|
|
|
704
704
|
vertical-align: top;
|
|
705
705
|
}
|
|
706
706
|
|
|
707
|
+
/* Remove top margin from first element in table cells */
|
|
708
|
+
td > *:first-child,
|
|
709
|
+
th > *:first-child {
|
|
710
|
+
margin-top: 0 !important;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
/* Remove bottom margin from last element in table cells */
|
|
714
|
+
td > *:last-child,
|
|
715
|
+
th > *:last-child {
|
|
716
|
+
margin-bottom: 0 !important;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
/* Specifically target common block elements that might be first in cells */
|
|
720
|
+
td > h1:first-child,
|
|
721
|
+
td > h2:first-child,
|
|
722
|
+
td > h3:first-child,
|
|
723
|
+
td > h4:first-child,
|
|
724
|
+
td > h5:first-child,
|
|
725
|
+
td > h6:first-child,
|
|
726
|
+
td > p:first-child,
|
|
727
|
+
td > ul:first-child,
|
|
728
|
+
td > ol:first-child,
|
|
729
|
+
td > blockquote:first-child,
|
|
730
|
+
td > pre:first-child,
|
|
731
|
+
th > h1:first-child,
|
|
732
|
+
th > h2:first-child,
|
|
733
|
+
th > h3:first-child,
|
|
734
|
+
th > h4:first-child,
|
|
735
|
+
th > h5:first-child,
|
|
736
|
+
th > h6:first-child,
|
|
737
|
+
th > p:first-child,
|
|
738
|
+
th > ul:first-child,
|
|
739
|
+
th > ol:first-child,
|
|
740
|
+
th > blockquote:first-child,
|
|
741
|
+
th > pre:first-child {
|
|
742
|
+
margin-top: 0 !important;
|
|
743
|
+
padding-top: 0 !important;
|
|
744
|
+
}
|
|
745
|
+
|
|
707
746
|
tr:last-child td {
|
|
708
747
|
border-bottom: none;
|
|
709
748
|
}
|
|
@@ -1022,13 +1061,13 @@ tr:hover {
|
|
|
1022
1061
|
padding: var(--space-4);
|
|
1023
1062
|
border-radius: var(--radius-lg);
|
|
1024
1063
|
overflow-x: auto;
|
|
1025
|
-
margin: var(--space-
|
|
1064
|
+
margin: var(--space-2) 0;
|
|
1026
1065
|
}
|
|
1027
1066
|
|
|
1028
1067
|
/* Mermaid Full Screen Viewer */
|
|
1029
1068
|
.mermaid-container {
|
|
1030
1069
|
position: relative;
|
|
1031
|
-
margin: var(--space-
|
|
1070
|
+
margin: var(--space-3) 0;
|
|
1032
1071
|
border: 1px solid var(--color-border-default);
|
|
1033
1072
|
border-radius: var(--radius-lg);
|
|
1034
1073
|
overflow: hidden;
|
|
@@ -1090,7 +1129,7 @@ tr:hover {
|
|
|
1090
1129
|
}
|
|
1091
1130
|
|
|
1092
1131
|
.mermaid-wrapper {
|
|
1093
|
-
padding: var(--space-
|
|
1132
|
+
padding: var(--space-3);
|
|
1094
1133
|
overflow: auto;
|
|
1095
1134
|
max-height: 600px;
|
|
1096
1135
|
}
|
package/html/README.html
CHANGED
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"name": "Knowcode Ltd",
|
|
63
63
|
"url": "https://knowcode.tech"
|
|
64
64
|
},
|
|
65
|
-
"datePublished": "2025-07-
|
|
66
|
-
"dateModified": "2025-07-
|
|
65
|
+
"datePublished": "2025-07-22T18:55:04.119Z",
|
|
66
|
+
"dateModified": "2025-07-22T18:55:04.119Z",
|
|
67
67
|
"mainEntityOfPage": {
|
|
68
68
|
"@type": "WebPage",
|
|
69
69
|
"@id": "https://doc-builder-delta.vercel.app/README.html"
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
|
|
97
97
|
<div class="header-actions">
|
|
98
98
|
<div class="deployment-info">
|
|
99
|
-
<span class="deployment-date" title="Built with doc-builder v1.5.
|
|
99
|
+
<span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
|
|
100
100
|
</div>
|
|
101
101
|
|
|
102
102
|
|
|
@@ -163,6 +163,15 @@
|
|
|
163
163
|
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
|
|
164
164
|
<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="fas fa-file-alt"></i> Troubleshooting Guide</a>
|
|
165
165
|
<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="fas fa-file-alt"></i> Windows Setup Guide</a></div></div>
|
|
166
|
+
<div class="nav-section" data-level="1">
|
|
167
|
+
<a class="nav-title collapsible expanded" href="/launch/README.html" data-target="nav-launch-1" >
|
|
168
|
+
<i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Launch
|
|
169
|
+
</a>
|
|
170
|
+
<div class="nav-content" id="nav-launch-1">
|
|
171
|
+
<a href="/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="fas fa-file-alt"></i> Launch Overview</a>
|
|
172
|
+
<a href="/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="fas fa-file-alt"></i> Bubble Plugin Specification</a>
|
|
173
|
+
<a href="/launch/go-to-market-strategy.html" class="nav-item" data-tooltip="Go-to-Market Strategy & Product Launch Plan."><i class="fas fa-file-alt"></i> Go To Market Strategy</a>
|
|
174
|
+
<a href="/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="fas fa-file-alt"></i> Launch Announcements</a></div></div>
|
|
166
175
|
</nav>
|
|
167
176
|
<div class="resize-handle"></div>
|
|
168
177
|
</aside>
|
|
@@ -180,7 +189,7 @@
|
|
|
180
189
|
<h3><i class="ph ph-rocket-launch" aria-label="launch"></i> Quick Start</h3>
|
|
181
190
|
<pre><code class="language-bash">npx @knowcode/doc-builder@latest deploy
|
|
182
191
|
</code></pre>
|
|
183
|
-
<p><a href="https://doc-builder-delta.vercel.app"><strong>
|
|
192
|
+
<p><a href="https://doc-builder-delta.vercel.app"><strong>You are looking at a demo</strong></a> | <a href="https://www.npmjs.com/package/@knowcode/doc-builder"><strong>NPM Package</strong></a> | <a href="https://github.com/wapdat/doc-builder"><strong>GitHub</strong></a></p>
|
|
184
193
|
</div>
|
|
185
194
|
|
|
186
195
|
<hr>
|
|
@@ -253,38 +262,19 @@
|
|
|
253
262
|
<h2><i class="ph ph-gear-six" aria-label="tools"></i> Simple Workflow</h2>
|
|
254
263
|
<table>
|
|
255
264
|
<tr>
|
|
256
|
-
<td width="
|
|
265
|
+
<td width="50%">
|
|
257
266
|
|
|
258
|
-
<h3>1️⃣
|
|
267
|
+
<h3>1️⃣ Setup</h3>
|
|
259
268
|
<pre><code class="language-bash">npx @knowcode/doc-builder@latest init
|
|
260
269
|
</code></pre>
|
|
261
|
-
<p><em>Create project structure</em></p>
|
|
270
|
+
<p><em>Create project structure and configure doc-builder</em></p>
|
|
262
271
|
</td>
|
|
263
|
-
<td width="
|
|
264
|
-
|
|
265
|
-
<h3>2️⃣ Write Docs</h3>
|
|
266
|
-
<pre><code class="language-markdown"># Getting Started
|
|
267
|
-
Welcome to our docs!
|
|
268
|
-
|
|
269
|
-
## Features
|
|
270
|
-
- <i class="ph ph-check-circle" aria-label="checked"></i> Feature one
|
|
271
|
-
- <i class="ph ph-check-circle" aria-label="checked"></i> Feature two
|
|
272
|
-
</code></pre>
|
|
273
|
-
<p><em>Use markdown files</em></p>
|
|
274
|
-
</td>
|
|
275
|
-
<td width="25%">
|
|
276
|
-
|
|
277
|
-
<h3>3️⃣ Preview</h3>
|
|
278
|
-
<pre><code class="language-bash">npx @knowcode/doc-builder@latest dev
|
|
279
|
-
</code></pre>
|
|
280
|
-
<p><em>Live development server</em></p>
|
|
281
|
-
</td>
|
|
282
|
-
<td width="25%">
|
|
272
|
+
<td width="50%">
|
|
283
273
|
|
|
284
|
-
<h3>
|
|
274
|
+
<h3>2️⃣ Deploy</h3>
|
|
285
275
|
<pre><code class="language-bash">npx @knowcode/doc-builder@latest deploy
|
|
286
276
|
</code></pre>
|
|
287
|
-
<p><em>
|
|
277
|
+
<p><em>Build your markdown files and deploy to production</em></p>
|
|
288
278
|
</td>
|
|
289
279
|
</tr>
|
|
290
280
|
</table>
|
|
@@ -387,7 +377,7 @@ docBuilder.build({
|
|
|
387
377
|
<td width="50%">
|
|
388
378
|
|
|
389
379
|
<h3>Contributing</h3>
|
|
390
|
-
<p>We welcome contributions! Check our <a href="https://github.com/
|
|
380
|
+
<p>We welcome contributions! Check our <a href="https://github.com/wapdat/doc-builder">contribution guide</a> to get started.</p>
|
|
391
381
|
<p><strong>Ways to help:</strong></p>
|
|
392
382
|
<ul>
|
|
393
383
|
<li><i class="ph ph-bug" aria-label="bug"></i> Report bugs</li>
|
|
@@ -403,9 +393,9 @@ docBuilder.build({
|
|
|
403
393
|
<p><strong>Connect with us:</strong></p>
|
|
404
394
|
<ul>
|
|
405
395
|
<li><i class="ph ph-package" aria-label="package"></i> <a href="https://www.npmjs.com/package/@knowcode/doc-builder">NPM Package</a></li>
|
|
406
|
-
<li>🐙 <a href="https://github.com/
|
|
396
|
+
<li>🐙 <a href="https://github.com/wapdat/doc-builder">GitHub Repo</a></li>
|
|
407
397
|
<li>🌐 <a href="https://knowcode.com">Website</a></li>
|
|
408
|
-
<li><i class="ph ph-chat-circle" aria-label="chat"></i> <a href="https://github.com/
|
|
398
|
+
<li><i class="ph ph-chat-circle" aria-label="chat"></i> <a href="https://github.com/wapdat/doc-builder/discussions">Discussions</a></li>
|
|
409
399
|
</ul>
|
|
410
400
|
</td>
|
|
411
401
|
</tr>
|
|
@@ -416,7 +406,7 @@ docBuilder.build({
|
|
|
416
406
|
|
|
417
407
|
<h3><i class="ph ph-note-pencil" aria-label="edit"></i> License: MIT © KnowCode</h3>
|
|
418
408
|
<p>Built with <i class="ph ph-heart" aria-label="love"></i> by developers, for developers</p>
|
|
419
|
-
<p><a href="https://www.npmjs.com/package/@knowcode/doc-builder"><strong>Get Started</strong></a> | <a href="https://doc-builder-delta.vercel.app"><strong>
|
|
409
|
+
<p><a href="https://www.npmjs.com/package/@knowcode/doc-builder"><strong>Get Started</strong></a> | <a href="https://doc-builder-delta.vercel.app"><strong>You are looking at a demo</strong></a> | <a href="https://github.com/wapdat/doc-builder"><strong>Star on GitHub</strong></a></p>
|
|
420
410
|
</div>
|
|
421
411
|
|
|
422
412
|
</div>
|
|
@@ -704,6 +704,45 @@ table th > * {
|
|
|
704
704
|
vertical-align: top;
|
|
705
705
|
}
|
|
706
706
|
|
|
707
|
+
/* Remove top margin from first element in table cells */
|
|
708
|
+
td > *:first-child,
|
|
709
|
+
th > *:first-child {
|
|
710
|
+
margin-top: 0 !important;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
/* Remove bottom margin from last element in table cells */
|
|
714
|
+
td > *:last-child,
|
|
715
|
+
th > *:last-child {
|
|
716
|
+
margin-bottom: 0 !important;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
/* Specifically target common block elements that might be first in cells */
|
|
720
|
+
td > h1:first-child,
|
|
721
|
+
td > h2:first-child,
|
|
722
|
+
td > h3:first-child,
|
|
723
|
+
td > h4:first-child,
|
|
724
|
+
td > h5:first-child,
|
|
725
|
+
td > h6:first-child,
|
|
726
|
+
td > p:first-child,
|
|
727
|
+
td > ul:first-child,
|
|
728
|
+
td > ol:first-child,
|
|
729
|
+
td > blockquote:first-child,
|
|
730
|
+
td > pre:first-child,
|
|
731
|
+
th > h1:first-child,
|
|
732
|
+
th > h2:first-child,
|
|
733
|
+
th > h3:first-child,
|
|
734
|
+
th > h4:first-child,
|
|
735
|
+
th > h5:first-child,
|
|
736
|
+
th > h6:first-child,
|
|
737
|
+
th > p:first-child,
|
|
738
|
+
th > ul:first-child,
|
|
739
|
+
th > ol:first-child,
|
|
740
|
+
th > blockquote:first-child,
|
|
741
|
+
th > pre:first-child {
|
|
742
|
+
margin-top: 0 !important;
|
|
743
|
+
padding-top: 0 !important;
|
|
744
|
+
}
|
|
745
|
+
|
|
707
746
|
tr:last-child td {
|
|
708
747
|
border-bottom: none;
|
|
709
748
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<meta name="description" content="
|
|
6
|
+
<meta name="description" content="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose.">
|
|
7
7
|
<title>Documentation Index | Doc Builder</title>
|
|
8
8
|
|
|
9
9
|
<meta name="author" content="Lindsay Smith">
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<meta property="og:type" content="article">
|
|
16
16
|
<meta property="og:url" content="https://doc-builder-delta.vercel.app/documentation-index.html">
|
|
17
17
|
<meta property="og:title" content="Documentation Index | Doc Builder">
|
|
18
|
-
<meta property="og:description" content="
|
|
18
|
+
<meta property="og:description" content="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose.">
|
|
19
19
|
<meta property="og:image" content="https://doc-builder-delta.vercel.app/og-default.png">
|
|
20
20
|
<meta property="og:site_name" content="Doc Builder">
|
|
21
21
|
<meta property="og:locale" content="en_US">
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<meta name="twitter:site" content="@planbbackups">
|
|
26
26
|
<meta name="twitter:creator" content="@planbbackups">
|
|
27
27
|
<meta name="twitter:title" content="Documentation Index | Doc Builder">
|
|
28
|
-
<meta name="twitter:description" content="
|
|
28
|
+
<meta name="twitter:description" content="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose.">
|
|
29
29
|
<meta name="twitter:image" content="https://doc-builder-delta.vercel.app/og-default.png">
|
|
30
30
|
|
|
31
31
|
<!-- Custom Meta Tags -->
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@context": "https://schema.org",
|
|
53
53
|
"@type": "TechArticle",
|
|
54
54
|
"headline": "Documentation Index",
|
|
55
|
-
"description": "
|
|
55
|
+
"description": "This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose.",
|
|
56
56
|
"author": {
|
|
57
57
|
"@type": "Person",
|
|
58
58
|
"name": "Lindsay Smith"
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"name": "Knowcode Ltd",
|
|
63
63
|
"url": "https://knowcode.tech"
|
|
64
64
|
},
|
|
65
|
-
"datePublished": "2025-07-
|
|
66
|
-
"dateModified": "2025-07-
|
|
65
|
+
"datePublished": "2025-07-22T18:55:04.131Z",
|
|
66
|
+
"dateModified": "2025-07-22T18:55:04.131Z",
|
|
67
67
|
"mainEntityOfPage": {
|
|
68
68
|
"@type": "WebPage",
|
|
69
69
|
"@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
|
|
97
97
|
<div class="header-actions">
|
|
98
98
|
<div class="deployment-info">
|
|
99
|
-
<span class="deployment-date" title="Built with doc-builder v1.5.
|
|
99
|
+
<span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
|
|
100
100
|
</div>
|
|
101
101
|
|
|
102
102
|
|
|
@@ -163,6 +163,15 @@
|
|
|
163
163
|
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
|
|
164
164
|
<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="fas fa-file-alt"></i> Troubleshooting Guide</a>
|
|
165
165
|
<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="fas fa-file-alt"></i> Windows Setup Guide</a></div></div>
|
|
166
|
+
<div class="nav-section" data-level="1">
|
|
167
|
+
<a class="nav-title collapsible" href="/launch/README.html" data-target="nav-launch-1" >
|
|
168
|
+
<i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Launch
|
|
169
|
+
</a>
|
|
170
|
+
<div class="nav-content collapsed" id="nav-launch-1">
|
|
171
|
+
<a href="/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="fas fa-file-alt"></i> Launch Overview</a>
|
|
172
|
+
<a href="/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="fas fa-file-alt"></i> Bubble Plugin Specification</a>
|
|
173
|
+
<a href="/launch/go-to-market-strategy.html" class="nav-item" data-tooltip="Go-to-Market Strategy & Product Launch Plan."><i class="fas fa-file-alt"></i> Go To Market Strategy</a>
|
|
174
|
+
<a href="/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="fas fa-file-alt"></i> Launch Announcements</a></div></div>
|
|
166
175
|
</nav>
|
|
167
176
|
<div class="resize-handle"></div>
|
|
168
177
|
</aside>
|
|
@@ -171,7 +180,6 @@
|
|
|
171
180
|
<main class="content">
|
|
172
181
|
<div class="content-inner">
|
|
173
182
|
<h1>Documentation Index</h1>
|
|
174
|
-
<p><strong>Generated</strong>: 2025-07-21 18:00 UTC<br><strong>Status</strong>: Complete<br><strong>Verified</strong>: <i class="ph ph-check-circle" aria-label="checked"></i></p>
|
|
175
183
|
<h2>Overview</h2>
|
|
176
184
|
<p>This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose.</p>
|
|
177
185
|
<h2>Directory Structure</h2>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<meta name="description" content="
|
|
6
|
+
<meta name="description" content="This guide explains how to configure and use the built-in authentication feature in @knowcode/doc-builder to protect your documentation with basic...">
|
|
7
7
|
<title>Authentication Guide for @knowcode/doc-builder | Doc Builder</title>
|
|
8
8
|
|
|
9
9
|
<meta name="author" content="Lindsay Smith">
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<meta property="og:type" content="article">
|
|
16
16
|
<meta property="og:url" content="https://doc-builder-delta.vercel.app/guides/authentication-guide.html">
|
|
17
17
|
<meta property="og:title" content="Authentication Guide for @knowcode/doc-builder | Doc Builder">
|
|
18
|
-
<meta property="og:description" content="
|
|
18
|
+
<meta property="og:description" content="This guide explains how to configure and use the built-in authentication feature in @knowcode/doc-builder to protect your documentation with basic...">
|
|
19
19
|
<meta property="og:image" content="https://doc-builder-delta.vercel.app/og-default.png">
|
|
20
20
|
<meta property="og:site_name" content="Doc Builder">
|
|
21
21
|
<meta property="og:locale" content="en_US">
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<meta name="twitter:site" content="@planbbackups">
|
|
26
26
|
<meta name="twitter:creator" content="@planbbackups">
|
|
27
27
|
<meta name="twitter:title" content="Authentication Guide for @knowcode/doc-builder | Doc Builder">
|
|
28
|
-
<meta name="twitter:description" content="
|
|
28
|
+
<meta name="twitter:description" content="This guide explains how to configure and use the built-in authentication feature in @knowcode/doc-builder to protect your documentation with basic...">
|
|
29
29
|
<meta name="twitter:image" content="https://doc-builder-delta.vercel.app/og-default.png">
|
|
30
30
|
|
|
31
31
|
<!-- Custom Meta Tags -->
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@context": "https://schema.org",
|
|
53
53
|
"@type": "TechArticle",
|
|
54
54
|
"headline": "Authentication Guide for @knowcode/doc-builder",
|
|
55
|
-
"description": "
|
|
55
|
+
"description": "This guide explains how to configure and use the built-in authentication feature in @knowcode/doc-builder to protect your documentation with basic...",
|
|
56
56
|
"author": {
|
|
57
57
|
"@type": "Person",
|
|
58
58
|
"name": "Lindsay Smith"
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"name": "Knowcode Ltd",
|
|
63
63
|
"url": "https://knowcode.tech"
|
|
64
64
|
},
|
|
65
|
-
"datePublished": "2025-07-
|
|
66
|
-
"dateModified": "2025-07-
|
|
65
|
+
"datePublished": "2025-07-22T18:55:04.135Z",
|
|
66
|
+
"dateModified": "2025-07-22T18:55:04.135Z",
|
|
67
67
|
"mainEntityOfPage": {
|
|
68
68
|
"@type": "WebPage",
|
|
69
69
|
"@id": "https://doc-builder-delta.vercel.app/guides/authentication-guide.html"
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
|
|
103
103
|
<div class="header-actions">
|
|
104
104
|
<div class="deployment-info">
|
|
105
|
-
<span class="deployment-date" title="Built with doc-builder v1.5.
|
|
105
|
+
<span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
|
|
106
106
|
</div>
|
|
107
107
|
|
|
108
108
|
|
|
@@ -169,6 +169,15 @@
|
|
|
169
169
|
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
|
|
170
170
|
<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="fas fa-file-alt"></i> Troubleshooting Guide</a>
|
|
171
171
|
<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="fas fa-file-alt"></i> Windows Setup Guide</a></div></div>
|
|
172
|
+
<div class="nav-section" data-level="1">
|
|
173
|
+
<a class="nav-title collapsible" href="/launch/README.html" data-target="nav-launch-1" >
|
|
174
|
+
<i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Launch
|
|
175
|
+
</a>
|
|
176
|
+
<div class="nav-content collapsed" id="nav-launch-1">
|
|
177
|
+
<a href="/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="fas fa-file-alt"></i> Launch Overview</a>
|
|
178
|
+
<a href="/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="fas fa-file-alt"></i> Bubble Plugin Specification</a>
|
|
179
|
+
<a href="/launch/go-to-market-strategy.html" class="nav-item" data-tooltip="Go-to-Market Strategy & Product Launch Plan."><i class="fas fa-file-alt"></i> Go To Market Strategy</a>
|
|
180
|
+
<a href="/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="fas fa-file-alt"></i> Launch Announcements</a></div></div>
|
|
172
181
|
</nav>
|
|
173
182
|
<div class="resize-handle"></div>
|
|
174
183
|
</aside>
|
|
@@ -177,7 +186,6 @@
|
|
|
177
186
|
<main class="content">
|
|
178
187
|
<div class="content-inner">
|
|
179
188
|
<h1>Authentication Guide for @knowcode/doc-builder</h1>
|
|
180
|
-
<p><strong>Generated</strong>: 2025-07-21 18:30 UTC<br><strong>Status</strong>: Complete<br><strong>Verified</strong>: <i class="ph ph-check-circle" aria-label="checked"></i></p>
|
|
181
189
|
<h2>Overview</h2>
|
|
182
190
|
<p>This guide explains how to configure and use the built-in authentication feature in @knowcode/doc-builder to protect your documentation with basic username/password access control.</p>
|
|
183
191
|
<h2>What is Authentication?</h2>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<meta name="description" content="
|
|
6
|
+
<meta name="description" content="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it to...">
|
|
7
7
|
<title>Claude + CLAUDE.md Documentation Workflow Guide</title>
|
|
8
8
|
|
|
9
9
|
<meta name="author" content="Lindsay Smith">
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<meta property="og:type" content="article">
|
|
16
16
|
<meta property="og:url" content="https://doc-builder-delta.vercel.app/guides/claude-workflow-guide.html">
|
|
17
17
|
<meta property="og:title" content="Claude + CLAUDE.md Documentation Workflow Guide">
|
|
18
|
-
<meta property="og:description" content="
|
|
18
|
+
<meta property="og:description" content="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it to...">
|
|
19
19
|
<meta property="og:image" content="https://doc-builder-delta.vercel.app/og-default.png">
|
|
20
20
|
<meta property="og:site_name" content="Doc Builder">
|
|
21
21
|
<meta property="og:locale" content="en_US">
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<meta name="twitter:site" content="@planbbackups">
|
|
26
26
|
<meta name="twitter:creator" content="@planbbackups">
|
|
27
27
|
<meta name="twitter:title" content="Claude + CLAUDE.md Documentation Workflow Guide">
|
|
28
|
-
<meta name="twitter:description" content="
|
|
28
|
+
<meta name="twitter:description" content="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it to...">
|
|
29
29
|
<meta name="twitter:image" content="https://doc-builder-delta.vercel.app/og-default.png">
|
|
30
30
|
|
|
31
31
|
<!-- Custom Meta Tags -->
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@context": "https://schema.org",
|
|
53
53
|
"@type": "TechArticle",
|
|
54
54
|
"headline": "Claude + CLAUDE.md Documentation Workflow Guide",
|
|
55
|
-
"description": "
|
|
55
|
+
"description": "This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it to...",
|
|
56
56
|
"author": {
|
|
57
57
|
"@type": "Person",
|
|
58
58
|
"name": "Lindsay Smith"
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"name": "Knowcode Ltd",
|
|
63
63
|
"url": "https://knowcode.tech"
|
|
64
64
|
},
|
|
65
|
-
"datePublished": "2025-07-
|
|
66
|
-
"dateModified": "2025-07-
|
|
65
|
+
"datePublished": "2025-07-22T18:55:04.140Z",
|
|
66
|
+
"dateModified": "2025-07-22T18:55:04.140Z",
|
|
67
67
|
"mainEntityOfPage": {
|
|
68
68
|
"@type": "WebPage",
|
|
69
69
|
"@id": "https://doc-builder-delta.vercel.app/guides/claude-workflow-guide.html"
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
|
|
103
103
|
<div class="header-actions">
|
|
104
104
|
<div class="deployment-info">
|
|
105
|
-
<span class="deployment-date" title="Built with doc-builder v1.5.
|
|
105
|
+
<span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
|
|
106
106
|
</div>
|
|
107
107
|
|
|
108
108
|
|
|
@@ -169,6 +169,15 @@
|
|
|
169
169
|
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
|
|
170
170
|
<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="fas fa-file-alt"></i> Troubleshooting Guide</a>
|
|
171
171
|
<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="fas fa-file-alt"></i> Windows Setup Guide</a></div></div>
|
|
172
|
+
<div class="nav-section" data-level="1">
|
|
173
|
+
<a class="nav-title collapsible" href="/launch/README.html" data-target="nav-launch-1" >
|
|
174
|
+
<i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Launch
|
|
175
|
+
</a>
|
|
176
|
+
<div class="nav-content collapsed" id="nav-launch-1">
|
|
177
|
+
<a href="/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="fas fa-file-alt"></i> Launch Overview</a>
|
|
178
|
+
<a href="/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="fas fa-file-alt"></i> Bubble Plugin Specification</a>
|
|
179
|
+
<a href="/launch/go-to-market-strategy.html" class="nav-item" data-tooltip="Go-to-Market Strategy & Product Launch Plan."><i class="fas fa-file-alt"></i> Go To Market Strategy</a>
|
|
180
|
+
<a href="/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="fas fa-file-alt"></i> Launch Announcements</a></div></div>
|
|
172
181
|
</nav>
|
|
173
182
|
<div class="resize-handle"></div>
|
|
174
183
|
</aside>
|
|
@@ -177,7 +186,6 @@
|
|
|
177
186
|
<main class="content">
|
|
178
187
|
<div class="content-inner">
|
|
179
188
|
<h1>Claude + CLAUDE.md Documentation Workflow Guide</h1>
|
|
180
|
-
<p><strong>Generated</strong>: 2025-07-21 10:00 UTC<br><strong>Status</strong>: Complete<br><strong>Verified</strong>: <i class="ph ph-check-circle" aria-label="checked"></i></p>
|
|
181
189
|
<h2>Overview</h2>
|
|
182
190
|
<p>This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it to Vercel using the @knowcode/doc-builder tool.</p>
|
|
183
191
|
<h2>Workflow Overview</h2>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<meta name="description" content="
|
|
6
|
+
<meta name="description" content="This document defines the documentation standards and conventions for the @knowcode/doc-builder project. All documentation created for or by this project...">
|
|
7
7
|
<title>Document Standards for @knowcode/doc-builder | Doc Builder</title>
|
|
8
8
|
|
|
9
9
|
<meta name="author" content="Lindsay Smith">
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<meta property="og:type" content="article">
|
|
16
16
|
<meta property="og:url" content="https://doc-builder-delta.vercel.app/guides/documentation-standards.html">
|
|
17
17
|
<meta property="og:title" content="Document Standards for @knowcode/doc-builder | Doc Builder">
|
|
18
|
-
<meta property="og:description" content="
|
|
18
|
+
<meta property="og:description" content="This document defines the documentation standards and conventions for the @knowcode/doc-builder project. All documentation created for or by this project...">
|
|
19
19
|
<meta property="og:image" content="https://doc-builder-delta.vercel.app/og-default.png">
|
|
20
20
|
<meta property="og:site_name" content="Doc Builder">
|
|
21
21
|
<meta property="og:locale" content="en_US">
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<meta name="twitter:site" content="@planbbackups">
|
|
26
26
|
<meta name="twitter:creator" content="@planbbackups">
|
|
27
27
|
<meta name="twitter:title" content="Document Standards for @knowcode/doc-builder | Doc Builder">
|
|
28
|
-
<meta name="twitter:description" content="
|
|
28
|
+
<meta name="twitter:description" content="This document defines the documentation standards and conventions for the @knowcode/doc-builder project. All documentation created for or by this project...">
|
|
29
29
|
<meta name="twitter:image" content="https://doc-builder-delta.vercel.app/og-default.png">
|
|
30
30
|
|
|
31
31
|
<!-- Custom Meta Tags -->
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@context": "https://schema.org",
|
|
53
53
|
"@type": "TechArticle",
|
|
54
54
|
"headline": "Document Standards for @knowcode/doc-builder",
|
|
55
|
-
"description": "
|
|
55
|
+
"description": "This document defines the documentation standards and conventions for the @knowcode/doc-builder project. All documentation created for or by this project...",
|
|
56
56
|
"author": {
|
|
57
57
|
"@type": "Person",
|
|
58
58
|
"name": "Lindsay Smith"
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"name": "Knowcode Ltd",
|
|
63
63
|
"url": "https://knowcode.tech"
|
|
64
64
|
},
|
|
65
|
-
"datePublished": "2025-07-
|
|
66
|
-
"dateModified": "2025-07-
|
|
65
|
+
"datePublished": "2025-07-22T18:55:04.144Z",
|
|
66
|
+
"dateModified": "2025-07-22T18:55:04.144Z",
|
|
67
67
|
"mainEntityOfPage": {
|
|
68
68
|
"@type": "WebPage",
|
|
69
69
|
"@id": "https://doc-builder-delta.vercel.app/guides/documentation-standards.html"
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
|
|
103
103
|
<div class="header-actions">
|
|
104
104
|
<div class="deployment-info">
|
|
105
|
-
<span class="deployment-date" title="Built with doc-builder v1.5.
|
|
105
|
+
<span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
|
|
106
106
|
</div>
|
|
107
107
|
|
|
108
108
|
|
|
@@ -169,6 +169,15 @@
|
|
|
169
169
|
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
|
|
170
170
|
<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="fas fa-file-alt"></i> Troubleshooting Guide</a>
|
|
171
171
|
<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="fas fa-file-alt"></i> Windows Setup Guide</a></div></div>
|
|
172
|
+
<div class="nav-section" data-level="1">
|
|
173
|
+
<a class="nav-title collapsible" href="/launch/README.html" data-target="nav-launch-1" >
|
|
174
|
+
<i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Launch
|
|
175
|
+
</a>
|
|
176
|
+
<div class="nav-content collapsed" id="nav-launch-1">
|
|
177
|
+
<a href="/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="fas fa-file-alt"></i> Launch Overview</a>
|
|
178
|
+
<a href="/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="fas fa-file-alt"></i> Bubble Plugin Specification</a>
|
|
179
|
+
<a href="/launch/go-to-market-strategy.html" class="nav-item" data-tooltip="Go-to-Market Strategy & Product Launch Plan."><i class="fas fa-file-alt"></i> Go To Market Strategy</a>
|
|
180
|
+
<a href="/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="fas fa-file-alt"></i> Launch Announcements</a></div></div>
|
|
172
181
|
</nav>
|
|
173
182
|
<div class="resize-handle"></div>
|
|
174
183
|
</aside>
|
|
@@ -177,7 +186,6 @@
|
|
|
177
186
|
<main class="content">
|
|
178
187
|
<div class="content-inner">
|
|
179
188
|
<h1>Document Standards for @knowcode/doc-builder</h1>
|
|
180
|
-
<p><strong>Generated</strong>: 2025-07-21 18:00 UTC<br><strong>Status</strong>: Complete<br><strong>Verified</strong>: <i class="ph ph-check-circle" aria-label="checked"></i></p>
|
|
181
189
|
<h2>Overview</h2>
|
|
182
190
|
<p>This document defines the documentation standards and conventions for the @knowcode/doc-builder project. All documentation created for or by this project should follow these guidelines to ensure consistency, clarity, and maintainability.</p>
|
|
183
191
|
<h2>Document Structure Standards</h2>
|