@knowcode/doc-builder 1.9.3 → 1.9.5

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 (43) hide show
  1. package/.claude/settings.local.json +2 -1
  2. package/assets/css/notion-style.css +68 -30
  3. package/assets/js/main.js +2 -1
  4. package/html/README.html +3 -3
  5. package/html/css/notion-style.css +68 -30
  6. package/html/documentation-index.html +3 -3
  7. package/html/guides/authentication-default-change.html +3 -3
  8. package/html/guides/authentication-guide.html +3 -3
  9. package/html/guides/claude-workflow-guide.html +3 -3
  10. package/html/guides/documentation-standards.html +3 -3
  11. package/html/guides/html-embedding-guide.html +3 -3
  12. package/html/guides/image-modal-guide.html +3 -3
  13. package/html/guides/phosphor-icons-guide.html +3 -3
  14. package/html/guides/private-directory-authentication-troubleshooting.html +3 -3
  15. package/html/guides/private-directory-authentication.html +3 -3
  16. package/html/guides/public-site-deployment.html +3 -3
  17. package/html/guides/search-engine-verification-guide.html +3 -3
  18. package/html/guides/seo-guide.html +3 -3
  19. package/html/guides/seo-optimization-guide.html +3 -3
  20. package/html/guides/troubleshooting-guide.html +3 -3
  21. package/html/guides/windows-setup-guide.html +3 -3
  22. package/html/image-modal-test.html +3 -3
  23. package/html/index.html +3 -3
  24. package/html/js/main.js +2 -1
  25. package/html/private/cache-control-anti-pattern.html +3 -3
  26. package/html/private/launch/README.html +3 -3
  27. package/html/private/launch/auth-cleanup-summary.html +3 -3
  28. package/html/private/launch/bubble-plugin-specification.html +3 -3
  29. package/html/private/launch/go-to-market-strategy.html +3 -3
  30. package/html/private/launch/launch-announcements.html +3 -3
  31. package/html/private/launch/vercel-deployment-auth-setup.html +3 -3
  32. package/html/private/next-steps-walkthrough.html +3 -3
  33. package/html/private/supabase-auth-implementation-completed.html +3 -3
  34. package/html/private/supabase-auth-implementation-plan.html +3 -3
  35. package/html/private/supabase-auth-integration-plan.html +3 -3
  36. package/html/private/supabase-auth-setup-guide.html +3 -3
  37. package/html/private/test-private-doc.html +3 -3
  38. package/html/private/user-management-tooling.html +3 -3
  39. package/html/prompts/markdown-document-standards.html +3 -3
  40. package/html/sitemap.xml +50 -50
  41. package/html/vercel-cli-setup-guide.html +3 -3
  42. package/html/vercel-first-time-setup-guide.html +3 -3
  43. package/package.json +1 -1
@@ -45,7 +45,8 @@
45
45
  "Bash(DEBUG=1 ./add-users.sh add wru-bid-analysis.vercel.app lindsay@knowcode.tech)",
46
46
  "Bash(brew upgrade:*)",
47
47
  "Bash(psql:*)",
48
- "Bash(open /Users/lindsaysmith/Documents/lambda1.nosync/doc-builder/html/image-modal-test.html)"
48
+ "Bash(open /Users/lindsaysmith/Documents/lambda1.nosync/doc-builder/html/image-modal-test.html)",
49
+ "WebFetch(domain:nudge-campaign.vercel.app)"
49
50
  ],
50
51
  "deny": []
51
52
  }
@@ -1097,11 +1097,11 @@ tr:hover {
1097
1097
  /* Mermaid Full Screen Viewer */
1098
1098
  .mermaid-container {
1099
1099
  position: relative;
1100
- margin: var(--space-3) 0;
1101
- border: 1px solid var(--color-border-default);
1102
- border-radius: var(--radius-lg);
1103
- overflow: hidden;
1104
- background: var(--color-bg-default);
1100
+ margin: var(--space-6) 0;
1101
+ border: none;
1102
+ border-radius: 0;
1103
+ background: transparent;
1104
+ overflow: visible;
1105
1105
  }
1106
1106
 
1107
1107
  .mermaid-title {
@@ -1114,14 +1114,27 @@ tr:hover {
1114
1114
  }
1115
1115
 
1116
1116
  .mermaid-toolbar {
1117
- display: flex;
1118
- justify-content: space-between;
1119
- align-items: center;
1120
- padding: var(--space-3) var(--space-4);
1121
- background: var(--color-bg-secondary);
1122
- border-bottom: 1px solid var(--color-border-default);
1123
- font-size: var(--text-sm);
1124
- color: var(--color-text-secondary);
1117
+ opacity: 0;
1118
+ transition: opacity 0.2s ease;
1119
+ position: absolute;
1120
+ top: var(--space-2);
1121
+ right: var(--space-2);
1122
+ background: rgba(255, 255, 255, 0.95);
1123
+ backdrop-filter: blur(4px);
1124
+ border-radius: var(--radius-md);
1125
+ border: 1px solid var(--color-border-muted);
1126
+ padding: var(--space-1);
1127
+ z-index: 10;
1128
+ box-shadow: var(--shadow-sm);
1129
+ }
1130
+
1131
+ .mermaid-container:hover .mermaid-toolbar {
1132
+ opacity: 1;
1133
+ }
1134
+
1135
+ /* Subtle hover effects for diagram containers */
1136
+ .mermaid-container:hover {
1137
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
1125
1138
  }
1126
1139
 
1127
1140
  .mermaid-actions {
@@ -1130,32 +1143,28 @@ tr:hover {
1130
1143
  }
1131
1144
 
1132
1145
  .mermaid-btn {
1133
- display: flex;
1134
- align-items: center;
1135
- gap: var(--space-1-5);
1136
- padding: var(--space-1-5) var(--space-3);
1137
- border: 1px solid var(--color-border-default);
1138
- border-radius: var(--radius-md);
1139
- background: var(--color-bg-default);
1140
- color: var(--color-text-secondary);
1141
- text-decoration: none;
1142
- font-size: var(--text-sm);
1146
+ width: 32px;
1147
+ height: 32px;
1148
+ padding: 0;
1149
+ border: none;
1150
+ border-radius: var(--radius-sm);
1151
+ background: transparent;
1152
+ color: var(--color-text-muted);
1143
1153
  cursor: pointer;
1144
1154
  transition: all var(--duration-fast);
1145
- white-space: nowrap;
1155
+ display: flex;
1156
+ align-items: center;
1157
+ justify-content: center;
1146
1158
  }
1147
1159
 
1148
1160
  .mermaid-btn:hover {
1149
1161
  background: var(--color-accent-blue);
1150
- color: var(--color-text-inverse);
1151
- border-color: var(--color-accent-blue);
1152
- transform: translateY(-1px);
1153
- box-shadow: var(--shadow-sm);
1162
+ color: white;
1163
+ transform: scale(1.05);
1154
1164
  }
1155
1165
 
1156
1166
  .mermaid-btn i {
1157
- font-size: var(--text-xs);
1158
- flex-shrink: 0;
1167
+ font-size: 14px;
1159
1168
  }
1160
1169
 
1161
1170
  .mermaid-wrapper {
@@ -2079,6 +2088,7 @@ body.has-private-access .private-nav {
2079
2088
  border-radius: var(--radius-md);
2080
2089
  max-width: 100%;
2081
2090
  height: auto;
2091
+ margin: var(--space-8) 0; /* Add generous vertical spacing */
2082
2092
  }
2083
2093
 
2084
2094
  .content img:hover {
@@ -2087,6 +2097,34 @@ body.has-private-access .private-nav {
2087
2097
  box-shadow: var(--shadow-lg);
2088
2098
  }
2089
2099
 
2100
+ /* Images within paragraphs - center them with extra spacing */
2101
+ .content p img {
2102
+ margin: var(--space-6) auto; /* 24px top/bottom, auto left/right for centering */
2103
+ display: block; /* Ensure block-level behavior for centering */
2104
+ }
2105
+
2106
+ /* Extra spacing between consecutive images */
2107
+ .content img + img {
2108
+ margin-top: var(--space-12); /* 48px between consecutive images */
2109
+ }
2110
+
2111
+ /* Figure elements for better image presentation */
2112
+ .content figure {
2113
+ margin: var(--space-10) 0; /* 40px top/bottom for figures */
2114
+ text-align: center; /* Center figures by default */
2115
+ }
2116
+
2117
+ .content figure img {
2118
+ margin: 0; /* Reset margin for images within figures */
2119
+ }
2120
+
2121
+ .content figcaption {
2122
+ margin-top: var(--space-3); /* 12px spacing above captions */
2123
+ font-size: var(--text-sm); /* Smaller text for captions */
2124
+ color: var(--text-muted); /* Muted color for captions */
2125
+ font-style: italic; /* Italic style for captions */
2126
+ }
2127
+
2090
2128
  /* Modal overlay - hidden by default */
2091
2129
  .image-modal {
2092
2130
  display: none;
package/assets/js/main.js CHANGED
@@ -85,7 +85,8 @@ function initializeMermaidFullScreen() {
85
85
  // Full screen button
86
86
  const fullScreenBtn = document.createElement('button');
87
87
  fullScreenBtn.className = 'mermaid-btn';
88
- fullScreenBtn.innerHTML = '<i class="fas fa-expand"></i> Full Screen';
88
+ fullScreenBtn.innerHTML = '<i class="fas fa-expand"></i>';
89
+ fullScreenBtn.title = 'Full Screen';
89
90
  fullScreenBtn.addEventListener('click', () => openMermaidFullScreen(mermaidDiv, index));
90
91
 
91
92
  actions.appendChild(fullScreenBtn);
package/html/README.html CHANGED
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.897Z",
102
- "dateModified": "2025-07-28T16:34:27.897Z",
101
+ "datePublished": "2025-07-29T08:43:43.908Z",
102
+ "dateModified": "2025-07-29T08:43:43.908Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/README.html"
@@ -132,7 +132,7 @@
132
132
 
133
133
  <div class="header-actions">
134
134
  <div class="deployment-info">
135
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
135
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
136
136
  </div>
137
137
 
138
138
 
@@ -1097,11 +1097,11 @@ tr:hover {
1097
1097
  /* Mermaid Full Screen Viewer */
1098
1098
  .mermaid-container {
1099
1099
  position: relative;
1100
- margin: var(--space-3) 0;
1101
- border: 1px solid var(--color-border-default);
1102
- border-radius: var(--radius-lg);
1103
- overflow: hidden;
1104
- background: var(--color-bg-default);
1100
+ margin: var(--space-6) 0;
1101
+ border: none;
1102
+ border-radius: 0;
1103
+ background: transparent;
1104
+ overflow: visible;
1105
1105
  }
1106
1106
 
1107
1107
  .mermaid-title {
@@ -1114,14 +1114,27 @@ tr:hover {
1114
1114
  }
1115
1115
 
1116
1116
  .mermaid-toolbar {
1117
- display: flex;
1118
- justify-content: space-between;
1119
- align-items: center;
1120
- padding: var(--space-3) var(--space-4);
1121
- background: var(--color-bg-secondary);
1122
- border-bottom: 1px solid var(--color-border-default);
1123
- font-size: var(--text-sm);
1124
- color: var(--color-text-secondary);
1117
+ opacity: 0;
1118
+ transition: opacity 0.2s ease;
1119
+ position: absolute;
1120
+ top: var(--space-2);
1121
+ right: var(--space-2);
1122
+ background: rgba(255, 255, 255, 0.95);
1123
+ backdrop-filter: blur(4px);
1124
+ border-radius: var(--radius-md);
1125
+ border: 1px solid var(--color-border-muted);
1126
+ padding: var(--space-1);
1127
+ z-index: 10;
1128
+ box-shadow: var(--shadow-sm);
1129
+ }
1130
+
1131
+ .mermaid-container:hover .mermaid-toolbar {
1132
+ opacity: 1;
1133
+ }
1134
+
1135
+ /* Subtle hover effects for diagram containers */
1136
+ .mermaid-container:hover {
1137
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
1125
1138
  }
1126
1139
 
1127
1140
  .mermaid-actions {
@@ -1130,32 +1143,28 @@ tr:hover {
1130
1143
  }
1131
1144
 
1132
1145
  .mermaid-btn {
1133
- display: flex;
1134
- align-items: center;
1135
- gap: var(--space-1-5);
1136
- padding: var(--space-1-5) var(--space-3);
1137
- border: 1px solid var(--color-border-default);
1138
- border-radius: var(--radius-md);
1139
- background: var(--color-bg-default);
1140
- color: var(--color-text-secondary);
1141
- text-decoration: none;
1142
- font-size: var(--text-sm);
1146
+ width: 32px;
1147
+ height: 32px;
1148
+ padding: 0;
1149
+ border: none;
1150
+ border-radius: var(--radius-sm);
1151
+ background: transparent;
1152
+ color: var(--color-text-muted);
1143
1153
  cursor: pointer;
1144
1154
  transition: all var(--duration-fast);
1145
- white-space: nowrap;
1155
+ display: flex;
1156
+ align-items: center;
1157
+ justify-content: center;
1146
1158
  }
1147
1159
 
1148
1160
  .mermaid-btn:hover {
1149
1161
  background: var(--color-accent-blue);
1150
- color: var(--color-text-inverse);
1151
- border-color: var(--color-accent-blue);
1152
- transform: translateY(-1px);
1153
- box-shadow: var(--shadow-sm);
1162
+ color: white;
1163
+ transform: scale(1.05);
1154
1164
  }
1155
1165
 
1156
1166
  .mermaid-btn i {
1157
- font-size: var(--text-xs);
1158
- flex-shrink: 0;
1167
+ font-size: 14px;
1159
1168
  }
1160
1169
 
1161
1170
  .mermaid-wrapper {
@@ -2079,6 +2088,7 @@ body.has-private-access .private-nav {
2079
2088
  border-radius: var(--radius-md);
2080
2089
  max-width: 100%;
2081
2090
  height: auto;
2091
+ margin: var(--space-8) 0; /* Add generous vertical spacing */
2082
2092
  }
2083
2093
 
2084
2094
  .content img:hover {
@@ -2087,6 +2097,34 @@ body.has-private-access .private-nav {
2087
2097
  box-shadow: var(--shadow-lg);
2088
2098
  }
2089
2099
 
2100
+ /* Images within paragraphs - center them with extra spacing */
2101
+ .content p img {
2102
+ margin: var(--space-6) auto; /* 24px top/bottom, auto left/right for centering */
2103
+ display: block; /* Ensure block-level behavior for centering */
2104
+ }
2105
+
2106
+ /* Extra spacing between consecutive images */
2107
+ .content img + img {
2108
+ margin-top: var(--space-12); /* 48px between consecutive images */
2109
+ }
2110
+
2111
+ /* Figure elements for better image presentation */
2112
+ .content figure {
2113
+ margin: var(--space-10) 0; /* 40px top/bottom for figures */
2114
+ text-align: center; /* Center figures by default */
2115
+ }
2116
+
2117
+ .content figure img {
2118
+ margin: 0; /* Reset margin for images within figures */
2119
+ }
2120
+
2121
+ .content figcaption {
2122
+ margin-top: var(--space-3); /* 12px spacing above captions */
2123
+ font-size: var(--text-sm); /* Smaller text for captions */
2124
+ color: var(--text-muted); /* Muted color for captions */
2125
+ font-style: italic; /* Italic style for captions */
2126
+ }
2127
+
2090
2128
  /* Modal overlay - hidden by default */
2091
2129
  .image-modal {
2092
2130
  display: none;
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.908Z",
102
- "dateModified": "2025-07-28T16:34:27.908Z",
101
+ "datePublished": "2025-07-29T08:43:43.919Z",
102
+ "dateModified": "2025-07-29T08:43:43.919Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
@@ -132,7 +132,7 @@
132
132
 
133
133
  <div class="header-actions">
134
134
  <div class="deployment-info">
135
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
135
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
136
136
  </div>
137
137
 
138
138
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.912Z",
102
- "dateModified": "2025-07-28T16:34:27.912Z",
101
+ "datePublished": "2025-07-29T08:43:43.923Z",
102
+ "dateModified": "2025-07-29T08:43:43.923Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/authentication-default-change.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.914Z",
102
- "dateModified": "2025-07-28T16:34:27.914Z",
101
+ "datePublished": "2025-07-29T08:43:43.926Z",
102
+ "dateModified": "2025-07-29T08:43:43.926Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/authentication-guide.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.918Z",
102
- "dateModified": "2025-07-28T16:34:27.918Z",
101
+ "datePublished": "2025-07-29T08:43:43.931Z",
102
+ "dateModified": "2025-07-29T08:43:43.931Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/claude-workflow-guide.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.922Z",
102
- "dateModified": "2025-07-28T16:34:27.922Z",
101
+ "datePublished": "2025-07-29T08:43:43.934Z",
102
+ "dateModified": "2025-07-29T08:43:43.934Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/documentation-standards.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.924Z",
102
- "dateModified": "2025-07-28T16:34:27.924Z",
101
+ "datePublished": "2025-07-29T08:43:43.937Z",
102
+ "dateModified": "2025-07-29T08:43:43.937Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/html-embedding-guide.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.926Z",
102
- "dateModified": "2025-07-28T16:34:27.926Z",
101
+ "datePublished": "2025-07-29T08:43:43.939Z",
102
+ "dateModified": "2025-07-29T08:43:43.939Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/image-modal-guide.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.929Z",
102
- "dateModified": "2025-07-28T16:34:27.929Z",
101
+ "datePublished": "2025-07-29T08:43:43.942Z",
102
+ "dateModified": "2025-07-29T08:43:43.942Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/phosphor-icons-guide.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.932Z",
102
- "dateModified": "2025-07-28T16:34:27.932Z",
101
+ "datePublished": "2025-07-29T08:43:43.946Z",
102
+ "dateModified": "2025-07-29T08:43:43.946Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/private-directory-authentication-troubleshooting.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.934Z",
102
- "dateModified": "2025-07-28T16:34:27.934Z",
101
+ "datePublished": "2025-07-29T08:43:43.949Z",
102
+ "dateModified": "2025-07-29T08:43:43.949Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/private-directory-authentication.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.936Z",
102
- "dateModified": "2025-07-28T16:34:27.936Z",
101
+ "datePublished": "2025-07-29T08:43:43.951Z",
102
+ "dateModified": "2025-07-29T08:43:43.951Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/public-site-deployment.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.937Z",
102
- "dateModified": "2025-07-28T16:34:27.937Z",
101
+ "datePublished": "2025-07-29T08:43:43.953Z",
102
+ "dateModified": "2025-07-29T08:43:43.953Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/search-engine-verification-guide.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.940Z",
102
- "dateModified": "2025-07-28T16:34:27.940Z",
101
+ "datePublished": "2025-07-29T08:43:43.956Z",
102
+ "dateModified": "2025-07-29T08:43:43.956Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/seo-guide.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.946Z",
102
- "dateModified": "2025-07-28T16:34:27.946Z",
101
+ "datePublished": "2025-07-29T08:43:43.962Z",
102
+ "dateModified": "2025-07-29T08:43:43.962Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/seo-optimization-guide.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144
 
@@ -98,8 +98,8 @@
98
98
  "name": "Knowcode Ltd",
99
99
  "url": "https://knowcode.tech"
100
100
  },
101
- "datePublished": "2025-07-28T16:34:27.949Z",
102
- "dateModified": "2025-07-28T16:34:27.949Z",
101
+ "datePublished": "2025-07-29T08:43:43.965Z",
102
+ "dateModified": "2025-07-29T08:43:43.965Z",
103
103
  "mainEntityOfPage": {
104
104
  "@type": "WebPage",
105
105
  "@id": "https://doc-builder-delta.vercel.app/guides/troubleshooting-guide.html"
@@ -138,7 +138,7 @@
138
138
 
139
139
  <div class="header-actions">
140
140
  <div class="deployment-info">
141
- <span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 28, 2025, 04:34 PM UTC</span>
141
+ <span class="deployment-date" title="Built with doc-builder v1.9.5">Last updated: Jul 29, 2025, 08:43 AM UTC</span>
142
142
  </div>
143
143
 
144
144