@knowcode/doc-builder 1.9.2 → 1.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +2 -1
- package/CLAUDE.md +35 -0
- package/assets/css/notion-style.css +31 -2
- package/html/README.html +4 -3
- package/html/auth.js +4 -3
- package/html/css/notion-style.css +31 -2
- package/html/documentation-index.html +9 -3
- package/html/guides/authentication-default-change.html +4 -3
- package/html/guides/authentication-guide.html +4 -3
- package/html/guides/claude-workflow-guide.html +4 -3
- package/html/guides/documentation-standards.html +4 -3
- package/html/guides/html-embedding-guide.html +4 -3
- package/html/guides/image-modal-guide.html +4 -3
- package/html/guides/phosphor-icons-guide.html +4 -3
- package/html/guides/private-directory-authentication-troubleshooting.html +545 -0
- package/html/guides/private-directory-authentication.html +4 -3
- package/html/guides/public-site-deployment.html +4 -3
- package/html/guides/search-engine-verification-guide.html +4 -3
- package/html/guides/seo-guide.html +4 -3
- package/html/guides/seo-optimization-guide.html +4 -3
- package/html/guides/troubleshooting-guide.html +4 -3
- package/html/guides/windows-setup-guide.html +4 -3
- package/html/image-modal-test.html +4 -3
- package/html/index.html +4 -3
- package/html/js/auth.js +4 -3
- package/html/private/cache-control-anti-pattern.html +4 -3
- package/html/private/launch/README.html +4 -3
- package/html/private/launch/auth-cleanup-summary.html +4 -3
- package/html/private/launch/bubble-plugin-specification.html +4 -3
- package/html/private/launch/go-to-market-strategy.html +4 -3
- package/html/private/launch/launch-announcements.html +4 -3
- package/html/private/launch/vercel-deployment-auth-setup.html +4 -3
- package/html/private/next-steps-walkthrough.html +4 -3
- package/html/private/supabase-auth-implementation-completed.html +4 -3
- package/html/private/supabase-auth-implementation-plan.html +4 -3
- package/html/private/supabase-auth-integration-plan.html +4 -3
- package/html/private/supabase-auth-setup-guide.html +4 -3
- package/html/private/test-private-doc.html +4 -3
- package/html/private/user-management-tooling.html +4 -3
- package/html/prompts/markdown-document-standards.html +4 -3
- package/html/sitemap.xml +60 -48
- package/html/vercel-cli-setup-guide.html +4 -3
- package/html/vercel-first-time-setup-guide.html +4 -3
- package/lib/emoji-mapper.js +2 -0
- package/lib/supabase-auth.js +4 -3
- 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
|
}
|
package/CLAUDE.md
CHANGED
|
@@ -20,6 +20,41 @@ This file provides comprehensive guidance for Claude Code when working with the
|
|
|
20
20
|
- 📱 **Fully responsive** design
|
|
21
21
|
- 🔧 **Zero configuration** - works with sensible defaults
|
|
22
22
|
|
|
23
|
+
## Emoji to Icon Mapping
|
|
24
|
+
|
|
25
|
+
The project includes automatic emoji to Phosphor icon conversion in markdown files. To add new emoji mappings:
|
|
26
|
+
|
|
27
|
+
### Adding New Emoji Mappings
|
|
28
|
+
|
|
29
|
+
1. **Location**: Edit `lib/emoji-mapper.js`
|
|
30
|
+
2. **Structure**: Add entries to the `emojiToPhosphor` object
|
|
31
|
+
3. **Format**: `'🏷️': '<i class="ph ph-tag" aria-label="tag"></i>'`
|
|
32
|
+
|
|
33
|
+
### Guidelines for New Mappings
|
|
34
|
+
|
|
35
|
+
- **Categorization**: Place emojis in appropriate sections (UI & Design, Actions & Navigation, etc.)
|
|
36
|
+
- **Icon Selection**: Use appropriate Phosphor icons from https://phosphoricons.com
|
|
37
|
+
- **Aria Labels**: Include descriptive aria-label attributes for accessibility
|
|
38
|
+
- **Semantic Matching**: Choose icons that best represent the emoji's meaning
|
|
39
|
+
|
|
40
|
+
### Example Addition
|
|
41
|
+
|
|
42
|
+
```javascript
|
|
43
|
+
// In the UI & Design section
|
|
44
|
+
'🏷️': '<i class="ph ph-tag" aria-label="tag"></i>',
|
|
45
|
+
'👁️': '<i class="ph ph-eye" aria-label="view"></i>',
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### Available Phosphor Icon Weights
|
|
49
|
+
|
|
50
|
+
The system supports different icon weights via configuration:
|
|
51
|
+
- `regular` (default)
|
|
52
|
+
- `thin`
|
|
53
|
+
- `light`
|
|
54
|
+
- `bold`
|
|
55
|
+
- `fill`
|
|
56
|
+
- `duotone`
|
|
57
|
+
|
|
23
58
|
## Documentation Guidelines
|
|
24
59
|
|
|
25
60
|
- For this project documentation, do not include in each document:
|
|
@@ -2052,8 +2052,8 @@ code .ph {
|
|
|
2052
2052
|
display: none;
|
|
2053
2053
|
}
|
|
2054
2054
|
|
|
2055
|
-
/* Show private navigation when user
|
|
2056
|
-
body.
|
|
2055
|
+
/* Show private navigation when user has private access */
|
|
2056
|
+
body.has-private-access .private-nav {
|
|
2057
2057
|
display: block;
|
|
2058
2058
|
}
|
|
2059
2059
|
|
|
@@ -2079,6 +2079,7 @@ body.authenticated .private-nav {
|
|
|
2079
2079
|
border-radius: var(--radius-md);
|
|
2080
2080
|
max-width: 100%;
|
|
2081
2081
|
height: auto;
|
|
2082
|
+
margin: var(--space-8) 0; /* Add generous vertical spacing */
|
|
2082
2083
|
}
|
|
2083
2084
|
|
|
2084
2085
|
.content img:hover {
|
|
@@ -2087,6 +2088,34 @@ body.authenticated .private-nav {
|
|
|
2087
2088
|
box-shadow: var(--shadow-lg);
|
|
2088
2089
|
}
|
|
2089
2090
|
|
|
2091
|
+
/* Images within paragraphs - center them with extra spacing */
|
|
2092
|
+
.content p img {
|
|
2093
|
+
margin: var(--space-6) auto; /* 24px top/bottom, auto left/right for centering */
|
|
2094
|
+
display: block; /* Ensure block-level behavior for centering */
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
/* Extra spacing between consecutive images */
|
|
2098
|
+
.content img + img {
|
|
2099
|
+
margin-top: var(--space-12); /* 48px between consecutive images */
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
/* Figure elements for better image presentation */
|
|
2103
|
+
.content figure {
|
|
2104
|
+
margin: var(--space-10) 0; /* 40px top/bottom for figures */
|
|
2105
|
+
text-align: center; /* Center figures by default */
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
.content figure img {
|
|
2109
|
+
margin: 0; /* Reset margin for images within figures */
|
|
2110
|
+
}
|
|
2111
|
+
|
|
2112
|
+
.content figcaption {
|
|
2113
|
+
margin-top: var(--space-3); /* 12px spacing above captions */
|
|
2114
|
+
font-size: var(--text-sm); /* Smaller text for captions */
|
|
2115
|
+
color: var(--text-muted); /* Muted color for captions */
|
|
2116
|
+
font-style: italic; /* Italic style for captions */
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2090
2119
|
/* Modal overlay - hidden by default */
|
|
2091
2120
|
.image-modal {
|
|
2092
2121
|
display: none;
|
package/html/README.html
CHANGED
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-29T08:08:55.850Z",
|
|
102
|
+
"dateModified": "2025-07-29T08:08:55.850Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/README.html"
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
<div class="header-actions">
|
|
134
134
|
<div class="deployment-info">
|
|
135
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
135
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 29, 2025, 08:08 AM UTC</span>
|
|
136
136
|
</div>
|
|
137
137
|
|
|
138
138
|
|
|
@@ -203,6 +203,7 @@
|
|
|
203
203
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="fas fa-file-alt"></i> Image Modal Guide</a>
|
|
204
204
|
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="fas fa-file-alt"></i> Phosphor Icons Guide</a>
|
|
205
205
|
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="fas fa-file-alt"></i> Private Directory Authentication</a>
|
|
206
|
+
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="fas fa-file-alt"></i> Private Directory Authentication Troubleshooting</a>
|
|
206
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="fas fa-file-alt"></i> Public Site Deployment</a>
|
|
207
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="fas fa-file-alt"></i> Search Engine Verification Guide</a>
|
|
208
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="fas fa-file-alt"></i> Seo Guide</a>
|
package/html/auth.js
CHANGED
|
@@ -58,16 +58,17 @@
|
|
|
58
58
|
if (isPrivatePage) {
|
|
59
59
|
showAccessDenied();
|
|
60
60
|
} else {
|
|
61
|
-
// Public page,
|
|
62
|
-
document.body.classList.add('authenticated');
|
|
61
|
+
// Public page, show it but don't grant private navigation access
|
|
62
|
+
document.body.classList.add('authenticated'); // Show body content
|
|
63
63
|
updateAuthButton(false);
|
|
64
64
|
}
|
|
65
65
|
return;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
// User is authenticated and has access
|
|
68
|
+
// User is authenticated and has domain access - grant full access including private nav
|
|
69
69
|
console.log('User authenticated and authorized');
|
|
70
70
|
document.body.classList.add('authenticated');
|
|
71
|
+
document.body.classList.add('has-private-access'); // Grant private navigation access
|
|
71
72
|
updateAuthButton(true);
|
|
72
73
|
|
|
73
74
|
} catch (error) {
|
|
@@ -2052,8 +2052,8 @@ code .ph {
|
|
|
2052
2052
|
display: none;
|
|
2053
2053
|
}
|
|
2054
2054
|
|
|
2055
|
-
/* Show private navigation when user
|
|
2056
|
-
body.
|
|
2055
|
+
/* Show private navigation when user has private access */
|
|
2056
|
+
body.has-private-access .private-nav {
|
|
2057
2057
|
display: block;
|
|
2058
2058
|
}
|
|
2059
2059
|
|
|
@@ -2079,6 +2079,7 @@ body.authenticated .private-nav {
|
|
|
2079
2079
|
border-radius: var(--radius-md);
|
|
2080
2080
|
max-width: 100%;
|
|
2081
2081
|
height: auto;
|
|
2082
|
+
margin: var(--space-8) 0; /* Add generous vertical spacing */
|
|
2082
2083
|
}
|
|
2083
2084
|
|
|
2084
2085
|
.content img:hover {
|
|
@@ -2087,6 +2088,34 @@ body.authenticated .private-nav {
|
|
|
2087
2088
|
box-shadow: var(--shadow-lg);
|
|
2088
2089
|
}
|
|
2089
2090
|
|
|
2091
|
+
/* Images within paragraphs - center them with extra spacing */
|
|
2092
|
+
.content p img {
|
|
2093
|
+
margin: var(--space-6) auto; /* 24px top/bottom, auto left/right for centering */
|
|
2094
|
+
display: block; /* Ensure block-level behavior for centering */
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
/* Extra spacing between consecutive images */
|
|
2098
|
+
.content img + img {
|
|
2099
|
+
margin-top: var(--space-12); /* 48px between consecutive images */
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
/* Figure elements for better image presentation */
|
|
2103
|
+
.content figure {
|
|
2104
|
+
margin: var(--space-10) 0; /* 40px top/bottom for figures */
|
|
2105
|
+
text-align: center; /* Center figures by default */
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
.content figure img {
|
|
2109
|
+
margin: 0; /* Reset margin for images within figures */
|
|
2110
|
+
}
|
|
2111
|
+
|
|
2112
|
+
.content figcaption {
|
|
2113
|
+
margin-top: var(--space-3); /* 12px spacing above captions */
|
|
2114
|
+
font-size: var(--text-sm); /* Smaller text for captions */
|
|
2115
|
+
color: var(--text-muted); /* Muted color for captions */
|
|
2116
|
+
font-style: italic; /* Italic style for captions */
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2090
2119
|
/* Modal overlay - hidden by default */
|
|
2091
2120
|
.image-modal {
|
|
2092
2121
|
display: none;
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-29T08:08:55.863Z",
|
|
102
|
+
"dateModified": "2025-07-29T08:08:55.863Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
<div class="header-actions">
|
|
134
134
|
<div class="deployment-info">
|
|
135
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
135
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 29, 2025, 08:08 AM UTC</span>
|
|
136
136
|
</div>
|
|
137
137
|
|
|
138
138
|
|
|
@@ -203,6 +203,7 @@
|
|
|
203
203
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="fas fa-file-alt"></i> Image Modal Guide</a>
|
|
204
204
|
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="fas fa-file-alt"></i> Phosphor Icons Guide</a>
|
|
205
205
|
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="fas fa-file-alt"></i> Private Directory Authentication</a>
|
|
206
|
+
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="fas fa-file-alt"></i> Private Directory Authentication Troubleshooting</a>
|
|
206
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="fas fa-file-alt"></i> Public Site Deployment</a>
|
|
207
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="fas fa-file-alt"></i> Search Engine Verification Guide</a>
|
|
208
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="fas fa-file-alt"></i> Seo Guide</a>
|
|
@@ -314,6 +315,11 @@
|
|
|
314
315
|
<td>Full-screen image viewing feature</td>
|
|
315
316
|
</tr>
|
|
316
317
|
<tr>
|
|
318
|
+
<td>HTML Embedding Guide</td>
|
|
319
|
+
<td><a href="./guides/html-embedding-guide.md">guides/html-embedding-guide.md</a></td>
|
|
320
|
+
<td>Embed interactive HTML via iframes</td>
|
|
321
|
+
</tr>
|
|
322
|
+
<tr>
|
|
317
323
|
<td>SEO Guide</td>
|
|
318
324
|
<td><a href="./guides/seo-guide.md">guides/seo-guide.md</a></td>
|
|
319
325
|
<td>SEO features and configuration</td>
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-29T08:08:55.867Z",
|
|
102
|
+
"dateModified": "2025-07-29T08:08:55.867Z",
|
|
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.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 29, 2025, 08:08 AM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -209,6 +209,7 @@
|
|
|
209
209
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="fas fa-file-alt"></i> Image Modal Guide</a>
|
|
210
210
|
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="fas fa-file-alt"></i> Phosphor Icons Guide</a>
|
|
211
211
|
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="fas fa-file-alt"></i> Private Directory Authentication</a>
|
|
212
|
+
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="fas fa-file-alt"></i> Private Directory Authentication Troubleshooting</a>
|
|
212
213
|
<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="fas fa-file-alt"></i> Public Site Deployment</a>
|
|
213
214
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="fas fa-file-alt"></i> Search Engine Verification Guide</a>
|
|
214
215
|
<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="fas fa-file-alt"></i> Seo Guide</a>
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-29T08:08:55.870Z",
|
|
102
|
+
"dateModified": "2025-07-29T08:08:55.870Z",
|
|
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.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 29, 2025, 08:08 AM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -209,6 +209,7 @@
|
|
|
209
209
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="fas fa-file-alt"></i> Image Modal Guide</a>
|
|
210
210
|
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="fas fa-file-alt"></i> Phosphor Icons Guide</a>
|
|
211
211
|
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="fas fa-file-alt"></i> Private Directory Authentication</a>
|
|
212
|
+
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="fas fa-file-alt"></i> Private Directory Authentication Troubleshooting</a>
|
|
212
213
|
<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="fas fa-file-alt"></i> Public Site Deployment</a>
|
|
213
214
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="fas fa-file-alt"></i> Search Engine Verification Guide</a>
|
|
214
215
|
<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="fas fa-file-alt"></i> Seo Guide</a>
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-29T08:08:55.875Z",
|
|
102
|
+
"dateModified": "2025-07-29T08:08:55.875Z",
|
|
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.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 29, 2025, 08:08 AM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -209,6 +209,7 @@
|
|
|
209
209
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="fas fa-file-alt"></i> Image Modal Guide</a>
|
|
210
210
|
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="fas fa-file-alt"></i> Phosphor Icons Guide</a>
|
|
211
211
|
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="fas fa-file-alt"></i> Private Directory Authentication</a>
|
|
212
|
+
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="fas fa-file-alt"></i> Private Directory Authentication Troubleshooting</a>
|
|
212
213
|
<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="fas fa-file-alt"></i> Public Site Deployment</a>
|
|
213
214
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="fas fa-file-alt"></i> Search Engine Verification Guide</a>
|
|
214
215
|
<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="fas fa-file-alt"></i> Seo Guide</a>
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-29T08:08:55.880Z",
|
|
102
|
+
"dateModified": "2025-07-29T08:08:55.880Z",
|
|
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.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 29, 2025, 08:08 AM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -209,6 +209,7 @@
|
|
|
209
209
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="fas fa-file-alt"></i> Image Modal Guide</a>
|
|
210
210
|
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="fas fa-file-alt"></i> Phosphor Icons Guide</a>
|
|
211
211
|
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="fas fa-file-alt"></i> Private Directory Authentication</a>
|
|
212
|
+
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="fas fa-file-alt"></i> Private Directory Authentication Troubleshooting</a>
|
|
212
213
|
<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="fas fa-file-alt"></i> Public Site Deployment</a>
|
|
213
214
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="fas fa-file-alt"></i> Search Engine Verification Guide</a>
|
|
214
215
|
<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="fas fa-file-alt"></i> Seo Guide</a>
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-29T08:08:55.882Z",
|
|
102
|
+
"dateModified": "2025-07-29T08:08:55.882Z",
|
|
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.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 29, 2025, 08:08 AM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -209,6 +209,7 @@
|
|
|
209
209
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="fas fa-file-alt"></i> Image Modal Guide</a>
|
|
210
210
|
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="fas fa-file-alt"></i> Phosphor Icons Guide</a>
|
|
211
211
|
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="fas fa-file-alt"></i> Private Directory Authentication</a>
|
|
212
|
+
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="fas fa-file-alt"></i> Private Directory Authentication Troubleshooting</a>
|
|
212
213
|
<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="fas fa-file-alt"></i> Public Site Deployment</a>
|
|
213
214
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="fas fa-file-alt"></i> Search Engine Verification Guide</a>
|
|
214
215
|
<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="fas fa-file-alt"></i> Seo Guide</a>
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-29T08:08:55.885Z",
|
|
102
|
+
"dateModified": "2025-07-29T08:08:55.885Z",
|
|
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.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 29, 2025, 08:08 AM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -209,6 +209,7 @@
|
|
|
209
209
|
<a href="/guides/image-modal-guide.html" class="nav-item active" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="fas fa-file-alt"></i> Image Modal Guide</a>
|
|
210
210
|
<a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="fas fa-file-alt"></i> Phosphor Icons Guide</a>
|
|
211
211
|
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="fas fa-file-alt"></i> Private Directory Authentication</a>
|
|
212
|
+
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="fas fa-file-alt"></i> Private Directory Authentication Troubleshooting</a>
|
|
212
213
|
<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="fas fa-file-alt"></i> Public Site Deployment</a>
|
|
213
214
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="fas fa-file-alt"></i> Search Engine Verification Guide</a>
|
|
214
215
|
<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="fas fa-file-alt"></i> Seo Guide</a>
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-29T08:08:55.888Z",
|
|
102
|
+
"dateModified": "2025-07-29T08:08:55.888Z",
|
|
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.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.3">Last updated: Jul 29, 2025, 08:08 AM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -209,6 +209,7 @@
|
|
|
209
209
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="fas fa-file-alt"></i> Image Modal Guide</a>
|
|
210
210
|
<a href="/guides/phosphor-icons-guide.html" class="nav-item active" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="fas fa-file-alt"></i> Phosphor Icons Guide</a>
|
|
211
211
|
<a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="fas fa-file-alt"></i> Private Directory Authentication</a>
|
|
212
|
+
<a href="/guides/private-directory-authentication-troubleshooting.html" class="nav-item" data-tooltip="Private Directory Authentication Troubleshooting."><i class="fas fa-file-alt"></i> Private Directory Authentication Troubleshooting</a>
|
|
212
213
|
<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="fas fa-file-alt"></i> Public Site Deployment</a>
|
|
213
214
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="fas fa-file-alt"></i> Search Engine Verification Guide</a>
|
|
214
215
|
<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="fas fa-file-alt"></i> Seo Guide</a>
|