@knowcode/doc-builder 1.9.17 → 1.9.18

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/.claude/settings.local.json +2 -1
  2. package/assets/js/main.js +15 -8
  3. package/doc-builder.config.js +1 -1
  4. package/doc-builder.config.js.backup.1754120529913 +124 -0
  5. package/html/README.html +3 -3
  6. package/html/about-doc-builder.html +3 -3
  7. package/html/documentation-index.html +3 -3
  8. package/html/guides/authentication-default-change.html +3 -3
  9. package/html/guides/authentication-guide.html +3 -3
  10. package/html/guides/claude-workflow-guide.html +3 -3
  11. package/html/guides/configuration-guide.html +3 -3
  12. package/html/guides/documentation-standards.html +3 -3
  13. package/html/guides/html-embedding-guide.html +3 -3
  14. package/html/guides/image-modal-guide.html +3 -3
  15. package/html/guides/phosphor-icons-guide.html +3 -3
  16. package/html/guides/private-directory-authentication-troubleshooting.html +3 -3
  17. package/html/guides/private-directory-authentication.html +3 -3
  18. package/html/guides/public-site-deployment.html +3 -3
  19. package/html/guides/search-engine-verification-guide.html +3 -3
  20. package/html/guides/seo-guide.html +3 -3
  21. package/html/guides/seo-optimization-guide.html +3 -3
  22. package/html/guides/supabase-authentication-complete-guide.html +3 -3
  23. package/html/guides/troubleshooting-guide.html +3 -3
  24. package/html/guides/windows-setup-guide.html +3 -3
  25. package/html/image-modal-test.html +3 -3
  26. package/html/index.html +3 -3
  27. package/html/js/main.js +15 -8
  28. package/html/private/cache-control-anti-pattern.html +3 -3
  29. package/html/private/launch/README.html +3 -3
  30. package/html/private/launch/auth-cleanup-summary.html +3 -3
  31. package/html/private/launch/bubble-plugin-specification.html +3 -3
  32. package/html/private/launch/go-to-market-strategy.html +3 -3
  33. package/html/private/launch/launch-announcements.html +3 -3
  34. package/html/private/launch/vercel-deployment-auth-setup.html +3 -3
  35. package/html/private/next-steps-walkthrough.html +3 -3
  36. package/html/private/supabase-auth-implementation-completed.html +3 -3
  37. package/html/private/supabase-auth-implementation-plan.html +3 -3
  38. package/html/private/supabase-auth-integration-plan.html +3 -3
  39. package/html/private/supabase-auth-setup-guide.html +3 -3
  40. package/html/private/test-private-doc.html +3 -3
  41. package/html/private/user-management-tooling.html +3 -3
  42. package/html/prompts/beautiful-documentation-design.html +3 -3
  43. package/html/prompts/markdown-document-standards.html +3 -3
  44. package/html/prompts/project-rename-strategy-sasha-publish.html +3 -3
  45. package/html/sitemap.xml +57 -57
  46. package/html/vercel-cli-setup-guide.html +3 -3
  47. package/html/vercel-first-time-setup-guide.html +3 -3
  48. package/package.json +1 -1
  49. package/html/test-mermaid-enhanced.html +0 -341
@@ -47,7 +47,8 @@
47
47
  "Bash(psql:*)",
48
48
  "Bash(open /Users/lindsaysmith/Documents/lambda1.nosync/doc-builder/html/image-modal-test.html)",
49
49
  "WebFetch(domain:nudge-campaign.vercel.app)",
50
- "WebFetch(domain:mermaid.js.org)"
50
+ "WebFetch(domain:mermaid.js.org)",
51
+ "Bash(open html/test-mermaid-enhanced.html)"
51
52
  ],
52
53
  "deny": []
53
54
  }
package/assets/js/main.js CHANGED
@@ -18,14 +18,16 @@ document.addEventListener('DOMContentLoaded', function() {
18
18
  const sidebar = document.querySelector('.sidebar');
19
19
  const breadcrumbs = document.querySelector('.breadcrumbs');
20
20
 
21
- if (bannerDismissed) {
22
- banner.classList.add('hidden');
23
- } else {
24
- // Show banner and adjust layout
25
- banner.classList.add('visible');
26
- mainWrapper.classList.add('banner-visible');
27
- sidebar.classList.add('banner-visible');
28
- breadcrumbs?.classList.add('banner-visible');
21
+ if (banner) {
22
+ if (bannerDismissed) {
23
+ banner.classList.add('hidden');
24
+ } else {
25
+ // Show banner and adjust layout
26
+ banner.classList.add('visible');
27
+ mainWrapper?.classList.add('banner-visible');
28
+ sidebar?.classList.add('banner-visible');
29
+ breadcrumbs?.classList.add('banner-visible');
30
+ }
29
31
  }
30
32
 
31
33
  // Handle banner dismissal
@@ -51,6 +53,7 @@ document.addEventListener('DOMContentLoaded', function() {
51
53
  });
52
54
 
53
55
  // Initialize Mermaid Full Screen Functionality
56
+ console.log('[Mermaid] DOMContentLoaded fired, calling initializeMermaidFullScreen...');
54
57
  initializeMermaidFullScreen();
55
58
  });
56
59
 
@@ -150,12 +153,16 @@ function configureMermaidTheme() {
150
153
 
151
154
  // Mermaid Full Screen Viewer
152
155
  function initializeMermaidFullScreen() {
156
+ console.log('[Mermaid] initializeMermaidFullScreen() called');
157
+
153
158
  // Wait for Mermaid to initialize
154
159
  if (typeof mermaid === 'undefined') {
160
+ console.log('[Mermaid] Mermaid not available yet, retrying in 100ms...');
155
161
  setTimeout(initializeMermaidFullScreen, 100);
156
162
  return;
157
163
  }
158
164
 
165
+ console.log('[Mermaid] Mermaid library available, configuring theme...');
159
166
  // Configure Mermaid with enhanced styling
160
167
  configureMermaidTheme();
161
168
 
@@ -1,5 +1,5 @@
1
1
  module.exports = {
2
- "configVersion": "1.9.16",
2
+ "configVersion": "1.9.17",
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.16",
3
+ "docsDir": "docs",
4
+ "outputDir": "html",
5
+ "siteName": "@knowcode/doc-builder",
6
+ "siteDescription": "Beautiful documentation with the least effort possible",
7
+ "favicon": "✨",
8
+ "features": {
9
+ "authentication": false,
10
+ "changelog": true,
11
+ "mermaid": true,
12
+ "mermaidEnhanced": true,
13
+ "tooltips": true,
14
+ "search": false,
15
+ "darkMode": true,
16
+ "phosphorIcons": true,
17
+ "phosphorWeight": "regular",
18
+ "phosphorSize": "1.2em",
19
+ "normalizeTitle": true,
20
+ "showPdfDownload": true,
21
+ "menuDefaultOpen": false,
22
+ "attachments": true,
23
+ "dynamicNavIcons": true,
24
+ "subtleColors": true,
25
+ "privateDirectoryAuth": false,
26
+ "banner": false
27
+ },
28
+ "auth": {
29
+ "supabaseUrl": "https://xcihhnfcitjrwbynxmka.supabase.co",
30
+ "supabaseAnonKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InhjaWhobmZjaXRqcndieW54bWthIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTM0Mzc2MzcsImV4cCI6MjA2OTAxMzYzN30.zvWp3JFIR8fBIiwuFF5gqOR_Kxb42baZS5fsBz60XOY"
31
+ },
32
+ "changelog": {
33
+ "daysBack": 14,
34
+ "enabled": true
35
+ },
36
+ "banner": {
37
+ "enabled": false,
38
+ "text": "This documentation is a preview version - some content may be incomplete",
39
+ "icon": "fas fa-exclamation-triangle",
40
+ "type": "warning",
41
+ "dismissible": true
42
+ },
43
+ "folderOrder": [],
44
+ "folderDescriptions": {},
45
+ "folderIcons": {},
46
+ "deployment": {
47
+ "platform": "vercel",
48
+ "outputDirectory": "html"
49
+ },
50
+ "seo": {
51
+ "enabled": true,
52
+ "siteUrl": "https://doc-builder-delta.vercel.app",
53
+ "author": "Lindsay Smith",
54
+ "twitterHandle": "@planbbackups",
55
+ "language": "en-US",
56
+ "keywords": [
57
+ "documentation",
58
+ "markdown",
59
+ "static site generator",
60
+ "vercel",
61
+ "notion-style"
62
+ ],
63
+ "titleTemplate": "{pageTitle} | {siteName}",
64
+ "autoKeywords": true,
65
+ "keywordLimit": 7,
66
+ "descriptionFallback": "smart",
67
+ "organization": {
68
+ "name": "Knowcode Ltd",
69
+ "url": "https://knowcode.tech",
70
+ "logo": ""
71
+ },
72
+ "ogImage": "/og-default.png",
73
+ "generateSitemap": true,
74
+ "generateRobotsTxt": true,
75
+ "customMetaTags": [
76
+ {
77
+ "name": "google-site-verification",
78
+ "content": "FtzcDTf5BQ9K5EfnGazQkgU2U4FiN3ITzM7gHwqUAqQ"
79
+ },
80
+ {
81
+ "name": "msvalidate.01",
82
+ "content": "B2D8C4C12C530D47AA962B24CAA09630"
83
+ }
84
+ ]
85
+ },
86
+ "attachmentTypes": [
87
+ ".pdf",
88
+ ".doc",
89
+ ".docx",
90
+ ".xls",
91
+ ".xlsx",
92
+ ".csv",
93
+ ".ppt",
94
+ ".pptx",
95
+ ".txt",
96
+ ".rtf",
97
+ ".html",
98
+ ".htm",
99
+ ".zip",
100
+ ".tar",
101
+ ".gz",
102
+ ".7z",
103
+ ".rar",
104
+ ".png",
105
+ ".jpg",
106
+ ".jpeg",
107
+ ".gif",
108
+ ".svg",
109
+ ".webp",
110
+ ".ico",
111
+ ".bmp",
112
+ ".json",
113
+ ".xml",
114
+ ".yaml",
115
+ ".yml",
116
+ ".toml",
117
+ ".mp4",
118
+ ".mp3",
119
+ ".wav",
120
+ ".avi",
121
+ ".mov"
122
+ ],
123
+ "productionUrl": "https://doc-builder-delta.vercel.app"
124
+ };
package/html/README.html CHANGED
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.193Z",
103
- "dateModified": "2025-08-02T07:34:26.193Z",
102
+ "datePublished": "2025-08-02T07:42:09.988Z",
103
+ "dateModified": "2025-08-02T07:42:09.988Z",
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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
136
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
137
137
  </div>
138
138
 
139
139
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.206Z",
103
- "dateModified": "2025-08-02T07:34:26.206Z",
102
+ "datePublished": "2025-08-02T07:42:10.001Z",
103
+ "dateModified": "2025-08-02T07:42:10.001Z",
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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
136
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
137
137
  </div>
138
138
 
139
139
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.208Z",
103
- "dateModified": "2025-08-02T07:34:26.208Z",
102
+ "datePublished": "2025-08-02T07:42:10.005Z",
103
+ "dateModified": "2025-08-02T07:42:10.005Z",
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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
136
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
137
137
  </div>
138
138
 
139
139
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.212Z",
103
- "dateModified": "2025-08-02T07:34:26.212Z",
102
+ "datePublished": "2025-08-02T07:42:10.010Z",
103
+ "dateModified": "2025-08-02T07:42:10.010Z",
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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.215Z",
103
- "dateModified": "2025-08-02T07:34:26.215Z",
102
+ "datePublished": "2025-08-02T07:42:10.014Z",
103
+ "dateModified": "2025-08-02T07:42:10.014Z",
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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.219Z",
103
- "dateModified": "2025-08-02T07:34:26.219Z",
102
+ "datePublished": "2025-08-02T07:42:10.019Z",
103
+ "dateModified": "2025-08-02T07:42:10.019Z",
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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.222Z",
103
- "dateModified": "2025-08-02T07:34:26.222Z",
102
+ "datePublished": "2025-08-02T07:42:10.023Z",
103
+ "dateModified": "2025-08-02T07:42:10.023Z",
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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.225Z",
103
- "dateModified": "2025-08-02T07:34:26.225Z",
102
+ "datePublished": "2025-08-02T07:42:10.028Z",
103
+ "dateModified": "2025-08-02T07:42:10.028Z",
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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.228Z",
103
- "dateModified": "2025-08-02T07:34:26.228Z",
102
+ "datePublished": "2025-08-02T07:42:10.031Z",
103
+ "dateModified": "2025-08-02T07:42:10.031Z",
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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.230Z",
103
- "dateModified": "2025-08-02T07:34:26.230Z",
102
+ "datePublished": "2025-08-02T07:42:10.034Z",
103
+ "dateModified": "2025-08-02T07:42:10.034Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/image-modal-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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.232Z",
103
- "dateModified": "2025-08-02T07:34:26.232Z",
102
+ "datePublished": "2025-08-02T07:42:10.037Z",
103
+ "dateModified": "2025-08-02T07:42:10.037Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/phosphor-icons-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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.235Z",
103
- "dateModified": "2025-08-02T07:34:26.235Z",
102
+ "datePublished": "2025-08-02T07:42:10.041Z",
103
+ "dateModified": "2025-08-02T07:42:10.041Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/private-directory-authentication-troubleshooting.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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.238Z",
103
- "dateModified": "2025-08-02T07:34:26.238Z",
102
+ "datePublished": "2025-08-02T07:42:10.044Z",
103
+ "dateModified": "2025-08-02T07:42:10.044Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/private-directory-authentication.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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.240Z",
103
- "dateModified": "2025-08-02T07:34:26.240Z",
102
+ "datePublished": "2025-08-02T07:42:10.047Z",
103
+ "dateModified": "2025-08-02T07:42:10.047Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/public-site-deployment.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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.242Z",
103
- "dateModified": "2025-08-02T07:34:26.242Z",
102
+ "datePublished": "2025-08-02T07:42:10.050Z",
103
+ "dateModified": "2025-08-02T07:42:10.050Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/search-engine-verification-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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.245Z",
103
- "dateModified": "2025-08-02T07:34:26.245Z",
102
+ "datePublished": "2025-08-02T07:42:10.054Z",
103
+ "dateModified": "2025-08-02T07:42:10.054Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/seo-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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.249Z",
103
- "dateModified": "2025-08-02T07:34:26.249Z",
102
+ "datePublished": "2025-08-02T07:42:10.059Z",
103
+ "dateModified": "2025-08-02T07:42:10.059Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/seo-optimization-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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.252Z",
103
- "dateModified": "2025-08-02T07:34:26.252Z",
102
+ "datePublished": "2025-08-02T07:42:10.062Z",
103
+ "dateModified": "2025-08-02T07:42:10.062Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/supabase-authentication-complete-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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.255Z",
103
- "dateModified": "2025-08-02T07:34:26.255Z",
102
+ "datePublished": "2025-08-02T07:42:10.066Z",
103
+ "dateModified": "2025-08-02T07:42:10.066Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/troubleshooting-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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.260Z",
103
- "dateModified": "2025-08-02T07:34:26.260Z",
102
+ "datePublished": "2025-08-02T07:42:10.071Z",
103
+ "dateModified": "2025-08-02T07:42:10.071Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/guides/windows-setup-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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
142
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
143
143
  </div>
144
144
 
145
145
 
@@ -99,8 +99,8 @@
99
99
  "name": "Knowcode Ltd",
100
100
  "url": "https://knowcode.tech"
101
101
  },
102
- "datePublished": "2025-08-02T07:34:26.262Z",
103
- "dateModified": "2025-08-02T07:34:26.262Z",
102
+ "datePublished": "2025-08-02T07:42:10.073Z",
103
+ "dateModified": "2025-08-02T07:42:10.073Z",
104
104
  "mainEntityOfPage": {
105
105
  "@type": "WebPage",
106
106
  "@id": "https://doc-builder-delta.vercel.app/image-modal-test.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.16">Last updated: Aug 2, 2025, 07:34 AM UTC</span>
136
+ <span class="deployment-date" title="Built with doc-builder v1.9.17">Last updated: Aug 2, 2025, 07:42 AM UTC</span>
137
137
  </div>
138
138
 
139
139