@knowcode/doc-builder 1.9.19 → 1.9.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/doc-builder.config.js +1 -1
  2. package/doc-builder.config.js.backup.1754384764054 +124 -0
  3. package/html/README.html +12 -4
  4. package/html/about-doc-builder.html +12 -4
  5. package/html/documentation-index.html +12 -4
  6. package/html/guides/authentication-default-change.html +12 -4
  7. package/html/guides/authentication-guide.html +12 -4
  8. package/html/guides/claude-workflow-guide.html +12 -4
  9. package/html/guides/configuration-guide.html +12 -4
  10. package/html/guides/documentation-standards.html +12 -4
  11. package/html/guides/html-embedding-guide.html +12 -4
  12. package/html/guides/image-modal-guide.html +12 -4
  13. package/html/guides/phosphor-icons-guide.html +12 -4
  14. package/html/guides/private-directory-authentication-troubleshooting.html +12 -4
  15. package/html/guides/private-directory-authentication.html +12 -4
  16. package/html/guides/public-site-deployment.html +12 -4
  17. package/html/guides/search-engine-verification-guide.html +12 -4
  18. package/html/guides/seo-guide.html +12 -4
  19. package/html/guides/seo-optimization-guide.html +12 -4
  20. package/html/guides/supabase-authentication-complete-guide.html +12 -4
  21. package/html/guides/troubleshooting-guide.html +12 -4
  22. package/html/guides/windows-setup-guide.html +12 -4
  23. package/html/image-modal-test.html +12 -4
  24. package/html/index.html +12 -4
  25. package/html/private/cache-control-anti-pattern.html +12 -4
  26. package/html/private/launch/README.html +12 -4
  27. package/html/private/launch/auth-cleanup-summary.html +12 -4
  28. package/html/private/launch/bubble-plugin-specification.html +12 -4
  29. package/html/private/launch/go-to-market-strategy.html +12 -4
  30. package/html/private/launch/launch-announcements.html +12 -4
  31. package/html/private/launch/vercel-deployment-auth-setup.html +12 -4
  32. package/html/private/next-steps-walkthrough.html +12 -4
  33. package/html/private/supabase-auth-implementation-completed.html +12 -4
  34. package/html/private/supabase-auth-implementation-plan.html +12 -4
  35. package/html/private/supabase-auth-integration-plan.html +12 -4
  36. package/html/private/supabase-auth-setup-guide.html +12 -4
  37. package/html/private/test-private-doc.html +12 -4
  38. package/html/private/user-management-tooling.html +12 -4
  39. package/html/prompts/beautiful-documentation-design.html +12 -4
  40. package/html/prompts/markdown-document-standards.html +12 -4
  41. package/html/prompts/project-rename-strategy-sasha-publish.html +12 -4
  42. package/html/sitemap.xml +74 -56
  43. package/html/test-questions/how-does-it-work%3F.html +290 -0
  44. package/html/test-questions/step-1%3A%20getting-started.html +285 -0
  45. package/html/test-questions/what-is-the-purpose.html +289 -0
  46. package/html/vercel-cli-setup-guide.html +12 -4
  47. package/html/vercel-first-time-setup-guide.html +12 -4
  48. package/lib/core-builder.js +19 -2
  49. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  module.exports = {
2
- "configVersion": "1.9.18",
2
+ "configVersion": "1.9.19",
3
3
  "docsDir": "docs",
4
4
  "outputDir": "html",
5
5
  "siteName": "@knowcode/doc-builder",
@@ -0,0 +1,124 @@
1
+ module.exports = {
2
+ "configVersion": "1.9.18",
3
+ "docsDir": "docs",
4
+ "outputDir": "html",
5
+ "siteName": "@knowcode/doc-builder",
6
+ "siteDescription": "Beautiful documentation with the least effort possible",
7
+ "favicon": "✨",
8
+ "features": {
9
+ "authentication": false,
10
+ "changelog": true,
11
+ "mermaid": true,
12
+ "mermaidEnhanced": true,
13
+ "tooltips": true,
14
+ "search": false,
15
+ "darkMode": true,
16
+ "phosphorIcons": true,
17
+ "phosphorWeight": "regular",
18
+ "phosphorSize": "1.2em",
19
+ "normalizeTitle": true,
20
+ "showPdfDownload": true,
21
+ "menuDefaultOpen": false,
22
+ "attachments": true,
23
+ "dynamicNavIcons": true,
24
+ "subtleColors": true,
25
+ "privateDirectoryAuth": false,
26
+ "banner": false
27
+ },
28
+ "auth": {
29
+ "supabaseUrl": "https://xcihhnfcitjrwbynxmka.supabase.co",
30
+ "supabaseAnonKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InhjaWhobmZjaXRqcndieW54bWthIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTM0Mzc2MzcsImV4cCI6MjA2OTAxMzYzN30.zvWp3JFIR8fBIiwuFF5gqOR_Kxb42baZS5fsBz60XOY"
31
+ },
32
+ "changelog": {
33
+ "daysBack": 14,
34
+ "enabled": true
35
+ },
36
+ "banner": {
37
+ "enabled": false,
38
+ "text": "This documentation is a preview version - some content may be incomplete",
39
+ "icon": "fas fa-exclamation-triangle",
40
+ "type": "warning",
41
+ "dismissible": true
42
+ },
43
+ "folderOrder": [],
44
+ "folderDescriptions": {},
45
+ "folderIcons": {},
46
+ "deployment": {
47
+ "platform": "vercel",
48
+ "outputDirectory": "html"
49
+ },
50
+ "seo": {
51
+ "enabled": true,
52
+ "siteUrl": "https://doc-builder-delta.vercel.app",
53
+ "author": "Lindsay Smith",
54
+ "twitterHandle": "@planbbackups",
55
+ "language": "en-US",
56
+ "keywords": [
57
+ "documentation",
58
+ "markdown",
59
+ "static site generator",
60
+ "vercel",
61
+ "notion-style"
62
+ ],
63
+ "titleTemplate": "{pageTitle} | {siteName}",
64
+ "autoKeywords": true,
65
+ "keywordLimit": 7,
66
+ "descriptionFallback": "smart",
67
+ "organization": {
68
+ "name": "Knowcode Ltd",
69
+ "url": "https://knowcode.tech",
70
+ "logo": ""
71
+ },
72
+ "ogImage": "/og-default.png",
73
+ "generateSitemap": true,
74
+ "generateRobotsTxt": true,
75
+ "customMetaTags": [
76
+ {
77
+ "name": "google-site-verification",
78
+ "content": "FtzcDTf5BQ9K5EfnGazQkgU2U4FiN3ITzM7gHwqUAqQ"
79
+ },
80
+ {
81
+ "name": "msvalidate.01",
82
+ "content": "B2D8C4C12C530D47AA962B24CAA09630"
83
+ }
84
+ ]
85
+ },
86
+ "attachmentTypes": [
87
+ ".pdf",
88
+ ".doc",
89
+ ".docx",
90
+ ".xls",
91
+ ".xlsx",
92
+ ".csv",
93
+ ".ppt",
94
+ ".pptx",
95
+ ".txt",
96
+ ".rtf",
97
+ ".html",
98
+ ".htm",
99
+ ".zip",
100
+ ".tar",
101
+ ".gz",
102
+ ".7z",
103
+ ".rar",
104
+ ".png",
105
+ ".jpg",
106
+ ".jpeg",
107
+ ".gif",
108
+ ".svg",
109
+ ".webp",
110
+ ".ico",
111
+ ".bmp",
112
+ ".json",
113
+ ".xml",
114
+ ".yaml",
115
+ ".yml",
116
+ ".toml",
117
+ ".mp4",
118
+ ".mp3",
119
+ ".wav",
120
+ ".avi",
121
+ ".mov"
122
+ ],
123
+ "productionUrl": "https://doc-builder-delta.vercel.app"
124
+ };
package/html/README.html CHANGED
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-03T10:54:29.934Z",
103
- "dateModified": "2025-08-03T10:54:29.934Z",
102
+ "datePublished": "2025-08-05T09:06:04.149Z",
103
+ "dateModified": "2025-08-05T09:06:04.149Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/README.html"
@@ -133,7 +133,7 @@
133
133
 
134
134
  <div class="header-actions">
135
135
  <div class="deployment-info">
136
- <span class="deployment-date" title="Built with doc-builder v1.9.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
136
+ <span class="deployment-date" title="Built with doc-builder v1.9.19">Last updated: Aug 5, 2025, 09:06 AM UTC</span>
137
137
  </div>
138
138
 
139
139
 
@@ -201,7 +201,7 @@
201
201
  <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>
202
202
  <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>
203
203
  <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>
204
- <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>
204
+ <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 for @knowcode/doc-builder</a>
205
205
  <a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
206
206
  <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>
207
207
  <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>
@@ -237,6 +237,14 @@
237
237
  <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>
238
238
  <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
239
  <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 &quot;sasha-publish&quot;, including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
240
+ <div class="nav-section" data-level="1">
241
+ <a class="nav-title collapsible expanded" href="#" data-target="nav-test-questions-1" >
242
+ <i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-folder"></i> Test Questions
243
+ </a>
244
+ <div class="nav-content" id="nav-test-questions-1">
245
+ <a href="/test-questions/how-does-it-work%3F.html" class="nav-item" data-tooltip="This is a test file to verify that question marks work properly in filenames."><i class="ph ph-file-text"></i> How Does It Work?</a>
246
+ <a href="/test-questions/step-1%3A%20getting-started.html" class="nav-item" data-tooltip="Step 1: Getting Started."><i class="ph ph-file-text"></i> Step 1: Getting Started</a>
247
+ <a href="/test-questions/what-is-the-purpose.html" class="nav-item" data-tooltip="Understanding the purpose of our documentation system"><i class="ph ph-file-text"></i> What Is The Purpose?</a></div></div>
240
248
  </nav>
241
249
  <div class="resize-handle"></div>
242
250
  </aside>
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-03T10:54:29.961Z",
103
- "dateModified": "2025-08-03T10:54:29.961Z",
102
+ "datePublished": "2025-08-05T09:06:04.162Z",
103
+ "dateModified": "2025-08-05T09:06:04.162Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/about-doc-builder.html"
@@ -133,7 +133,7 @@
133
133
 
134
134
  <div class="header-actions">
135
135
  <div class="deployment-info">
136
- <span class="deployment-date" title="Built with doc-builder v1.9.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
136
+ <span class="deployment-date" title="Built with doc-builder v1.9.19">Last updated: Aug 5, 2025, 09:06 AM UTC</span>
137
137
  </div>
138
138
 
139
139
 
@@ -201,7 +201,7 @@
201
201
  <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>
202
202
  <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>
203
203
  <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>
204
- <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>
204
+ <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 for @knowcode/doc-builder</a>
205
205
  <a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
206
206
  <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>
207
207
  <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>
@@ -237,6 +237,14 @@
237
237
  <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>
238
238
  <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
239
  <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 &quot;sasha-publish&quot;, including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
240
+ <div class="nav-section" data-level="1">
241
+ <a class="nav-title collapsible" href="#" data-target="nav-test-questions-1" >
242
+ <i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-folder"></i> Test Questions
243
+ </a>
244
+ <div class="nav-content collapsed" id="nav-test-questions-1">
245
+ <a href="/test-questions/how-does-it-work%3F.html" class="nav-item" data-tooltip="This is a test file to verify that question marks work properly in filenames."><i class="ph ph-file-text"></i> How Does It Work?</a>
246
+ <a href="/test-questions/step-1%3A%20getting-started.html" class="nav-item" data-tooltip="Step 1: Getting Started."><i class="ph ph-file-text"></i> Step 1: Getting Started</a>
247
+ <a href="/test-questions/what-is-the-purpose.html" class="nav-item" data-tooltip="Understanding the purpose of our documentation system"><i class="ph ph-file-text"></i> What Is The Purpose?</a></div></div>
240
248
  </nav>
241
249
  <div class="resize-handle"></div>
242
250
  </aside>
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-03T10:54:29.967Z",
103
- "dateModified": "2025-08-03T10:54:29.967Z",
102
+ "datePublished": "2025-08-05T09:06:04.166Z",
103
+ "dateModified": "2025-08-05T09:06:04.166Z",
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.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
136
+ <span class="deployment-date" title="Built with doc-builder v1.9.19">Last updated: Aug 5, 2025, 09:06 AM UTC</span>
137
137
  </div>
138
138
 
139
139
 
@@ -201,7 +201,7 @@
201
201
  <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>
202
202
  <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>
203
203
  <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>
204
- <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>
204
+ <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 for @knowcode/doc-builder</a>
205
205
  <a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
206
206
  <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>
207
207
  <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>
@@ -237,6 +237,14 @@
237
237
  <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>
238
238
  <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
239
  <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 &quot;sasha-publish&quot;, including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
240
+ <div class="nav-section" data-level="1">
241
+ <a class="nav-title collapsible" href="#" data-target="nav-test-questions-1" >
242
+ <i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-folder"></i> Test Questions
243
+ </a>
244
+ <div class="nav-content collapsed" id="nav-test-questions-1">
245
+ <a href="/test-questions/how-does-it-work%3F.html" class="nav-item" data-tooltip="This is a test file to verify that question marks work properly in filenames."><i class="ph ph-file-text"></i> How Does It Work?</a>
246
+ <a href="/test-questions/step-1%3A%20getting-started.html" class="nav-item" data-tooltip="Step 1: Getting Started."><i class="ph ph-file-text"></i> Step 1: Getting Started</a>
247
+ <a href="/test-questions/what-is-the-purpose.html" class="nav-item" data-tooltip="Understanding the purpose of our documentation system"><i class="ph ph-file-text"></i> What Is The Purpose?</a></div></div>
240
248
  </nav>
241
249
  <div class="resize-handle"></div>
242
250
  </aside>
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-03T10:54:29.988Z",
103
- "dateModified": "2025-08-03T10:54:29.988Z",
102
+ "datePublished": "2025-08-05T09:06:04.172Z",
103
+ "dateModified": "2025-08-05T09:06:04.172Z",
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.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.19">Last updated: Aug 5, 2025, 09:06 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -207,7 +207,7 @@
207
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
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
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>
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 for @knowcode/doc-builder</a>
211
211
  <a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
212
212
  <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>
213
213
  <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>
@@ -243,6 +243,14 @@
243
243
  <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>
244
244
  <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
245
  <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 &quot;sasha-publish&quot;, including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
246
+ <div class="nav-section" data-level="1">
247
+ <a class="nav-title collapsible" href="#" data-target="nav-test-questions-1" >
248
+ <i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-folder"></i> Test Questions
249
+ </a>
250
+ <div class="nav-content collapsed" id="nav-test-questions-1">
251
+ <a href="/test-questions/how-does-it-work%3F.html" class="nav-item" data-tooltip="This is a test file to verify that question marks work properly in filenames."><i class="ph ph-file-text"></i> How Does It Work?</a>
252
+ <a href="/test-questions/step-1%3A%20getting-started.html" class="nav-item" data-tooltip="Step 1: Getting Started."><i class="ph ph-file-text"></i> Step 1: Getting Started</a>
253
+ <a href="/test-questions/what-is-the-purpose.html" class="nav-item" data-tooltip="Understanding the purpose of our documentation system"><i class="ph ph-file-text"></i> What Is The Purpose?</a></div></div>
246
254
  </nav>
247
255
  <div class="resize-handle"></div>
248
256
  </aside>
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-03T10:54:30.012Z",
103
- "dateModified": "2025-08-03T10:54:30.012Z",
102
+ "datePublished": "2025-08-05T09:06:04.177Z",
103
+ "dateModified": "2025-08-05T09:06:04.177Z",
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.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.19">Last updated: Aug 5, 2025, 09:06 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -207,7 +207,7 @@
207
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
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
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>
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 for @knowcode/doc-builder</a>
211
211
  <a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
212
212
  <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>
213
213
  <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>
@@ -243,6 +243,14 @@
243
243
  <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>
244
244
  <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
245
  <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 &quot;sasha-publish&quot;, including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
246
+ <div class="nav-section" data-level="1">
247
+ <a class="nav-title collapsible" href="#" data-target="nav-test-questions-1" >
248
+ <i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-folder"></i> Test Questions
249
+ </a>
250
+ <div class="nav-content collapsed" id="nav-test-questions-1">
251
+ <a href="/test-questions/how-does-it-work%3F.html" class="nav-item" data-tooltip="This is a test file to verify that question marks work properly in filenames."><i class="ph ph-file-text"></i> How Does It Work?</a>
252
+ <a href="/test-questions/step-1%3A%20getting-started.html" class="nav-item" data-tooltip="Step 1: Getting Started."><i class="ph ph-file-text"></i> Step 1: Getting Started</a>
253
+ <a href="/test-questions/what-is-the-purpose.html" class="nav-item" data-tooltip="Understanding the purpose of our documentation system"><i class="ph ph-file-text"></i> What Is The Purpose?</a></div></div>
246
254
  </nav>
247
255
  <div class="resize-handle"></div>
248
256
  </aside>
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-03T10:54:30.040Z",
103
- "dateModified": "2025-08-03T10:54:30.040Z",
102
+ "datePublished": "2025-08-05T09:06:04.181Z",
103
+ "dateModified": "2025-08-05T09:06:04.181Z",
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.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.19">Last updated: Aug 5, 2025, 09:06 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -207,7 +207,7 @@
207
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
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
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>
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 for @knowcode/doc-builder</a>
211
211
  <a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
212
212
  <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>
213
213
  <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>
@@ -243,6 +243,14 @@
243
243
  <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>
244
244
  <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
245
  <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 &quot;sasha-publish&quot;, including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
246
+ <div class="nav-section" data-level="1">
247
+ <a class="nav-title collapsible" href="#" data-target="nav-test-questions-1" >
248
+ <i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-folder"></i> Test Questions
249
+ </a>
250
+ <div class="nav-content collapsed" id="nav-test-questions-1">
251
+ <a href="/test-questions/how-does-it-work%3F.html" class="nav-item" data-tooltip="This is a test file to verify that question marks work properly in filenames."><i class="ph ph-file-text"></i> How Does It Work?</a>
252
+ <a href="/test-questions/step-1%3A%20getting-started.html" class="nav-item" data-tooltip="Step 1: Getting Started."><i class="ph ph-file-text"></i> Step 1: Getting Started</a>
253
+ <a href="/test-questions/what-is-the-purpose.html" class="nav-item" data-tooltip="Understanding the purpose of our documentation system"><i class="ph ph-file-text"></i> What Is The Purpose?</a></div></div>
246
254
  </nav>
247
255
  <div class="resize-handle"></div>
248
256
  </aside>
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-03T10:54:30.070Z",
103
- "dateModified": "2025-08-03T10:54:30.070Z",
102
+ "datePublished": "2025-08-05T09:06:04.185Z",
103
+ "dateModified": "2025-08-05T09:06:04.185Z",
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.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.19">Last updated: Aug 5, 2025, 09:06 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -207,7 +207,7 @@
207
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
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
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>
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 for @knowcode/doc-builder</a>
211
211
  <a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
212
212
  <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>
213
213
  <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>
@@ -243,6 +243,14 @@
243
243
  <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>
244
244
  <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
245
  <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 &quot;sasha-publish&quot;, including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
246
+ <div class="nav-section" data-level="1">
247
+ <a class="nav-title collapsible" href="#" data-target="nav-test-questions-1" >
248
+ <i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-folder"></i> Test Questions
249
+ </a>
250
+ <div class="nav-content collapsed" id="nav-test-questions-1">
251
+ <a href="/test-questions/how-does-it-work%3F.html" class="nav-item" data-tooltip="This is a test file to verify that question marks work properly in filenames."><i class="ph ph-file-text"></i> How Does It Work?</a>
252
+ <a href="/test-questions/step-1%3A%20getting-started.html" class="nav-item" data-tooltip="Step 1: Getting Started."><i class="ph ph-file-text"></i> Step 1: Getting Started</a>
253
+ <a href="/test-questions/what-is-the-purpose.html" class="nav-item" data-tooltip="Understanding the purpose of our documentation system"><i class="ph ph-file-text"></i> What Is The Purpose?</a></div></div>
246
254
  </nav>
247
255
  <div class="resize-handle"></div>
248
256
  </aside>
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-03T10:54:30.097Z",
103
- "dateModified": "2025-08-03T10:54:30.097Z",
102
+ "datePublished": "2025-08-05T09:06:04.190Z",
103
+ "dateModified": "2025-08-05T09:06:04.190Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/documentation-standards.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.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.19">Last updated: Aug 5, 2025, 09:06 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -207,7 +207,7 @@
207
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
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
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>
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 for @knowcode/doc-builder</a>
211
211
  <a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
212
212
  <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>
213
213
  <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>
@@ -243,6 +243,14 @@
243
243
  <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>
244
244
  <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
245
  <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 &quot;sasha-publish&quot;, including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
246
+ <div class="nav-section" data-level="1">
247
+ <a class="nav-title collapsible" href="#" data-target="nav-test-questions-1" >
248
+ <i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-folder"></i> Test Questions
249
+ </a>
250
+ <div class="nav-content collapsed" id="nav-test-questions-1">
251
+ <a href="/test-questions/how-does-it-work%3F.html" class="nav-item" data-tooltip="This is a test file to verify that question marks work properly in filenames."><i class="ph ph-file-text"></i> How Does It Work?</a>
252
+ <a href="/test-questions/step-1%3A%20getting-started.html" class="nav-item" data-tooltip="Step 1: Getting Started."><i class="ph ph-file-text"></i> Step 1: Getting Started</a>
253
+ <a href="/test-questions/what-is-the-purpose.html" class="nav-item" data-tooltip="Understanding the purpose of our documentation system"><i class="ph ph-file-text"></i> What Is The Purpose?</a></div></div>
246
254
  </nav>
247
255
  <div class="resize-handle"></div>
248
256
  </aside>
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-03T10:54:30.116Z",
103
- "dateModified": "2025-08-03T10:54:30.116Z",
102
+ "datePublished": "2025-08-05T09:06:04.195Z",
103
+ "dateModified": "2025-08-05T09:06:04.195Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/html-embedding-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.18">Last updated: Aug 3, 2025, 10:54 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.19">Last updated: Aug 5, 2025, 09:06 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -207,7 +207,7 @@
207
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
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
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>
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 for @knowcode/doc-builder</a>
211
211
  <a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
212
212
  <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>
213
213
  <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>
@@ -243,6 +243,14 @@
243
243
  <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>
244
244
  <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
245
  <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 &quot;sasha-publish&quot;, including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
246
+ <div class="nav-section" data-level="1">
247
+ <a class="nav-title collapsible" href="#" data-target="nav-test-questions-1" >
248
+ <i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-folder"></i> Test Questions
249
+ </a>
250
+ <div class="nav-content collapsed" id="nav-test-questions-1">
251
+ <a href="/test-questions/how-does-it-work%3F.html" class="nav-item" data-tooltip="This is a test file to verify that question marks work properly in filenames."><i class="ph ph-file-text"></i> How Does It Work?</a>
252
+ <a href="/test-questions/step-1%3A%20getting-started.html" class="nav-item" data-tooltip="Step 1: Getting Started."><i class="ph ph-file-text"></i> Step 1: Getting Started</a>
253
+ <a href="/test-questions/what-is-the-purpose.html" class="nav-item" data-tooltip="Understanding the purpose of our documentation system"><i class="ph ph-file-text"></i> What Is The Purpose?</a></div></div>
246
254
  </nav>
247
255
  <div class="resize-handle"></div>
248
256
  </aside>