@knowcode/doc-builder 1.9.14 → 1.9.15
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/doc-builder.config.js +10 -2
- package/doc-builder.config.js.backup.1754059241330 +115 -0
- package/html/README.html +8 -15
- package/html/about-doc-builder.html +478 -0
- package/html/css/notion-style.css +102 -1
- package/html/documentation-index.html +8 -15
- package/html/guides/authentication-default-change.html +8 -15
- package/html/guides/authentication-guide.html +8 -15
- package/html/guides/claude-workflow-guide.html +8 -15
- package/html/guides/configuration-guide.html +8 -15
- package/html/guides/documentation-standards.html +8 -15
- package/html/guides/html-embedding-guide.html +8 -15
- package/html/guides/image-modal-guide.html +8 -15
- package/html/guides/phosphor-icons-guide.html +8 -15
- package/html/guides/private-directory-authentication-troubleshooting.html +8 -15
- package/html/guides/private-directory-authentication.html +8 -15
- package/html/guides/public-site-deployment.html +8 -15
- package/html/guides/search-engine-verification-guide.html +8 -15
- package/html/guides/seo-guide.html +8 -15
- package/html/guides/seo-optimization-guide.html +8 -15
- package/html/guides/supabase-authentication-complete-guide.html +8 -15
- package/html/guides/troubleshooting-guide.html +8 -15
- package/html/guides/windows-setup-guide.html +8 -15
- package/html/image-modal-test.html +8 -15
- package/html/index.html +8 -15
- package/html/private/cache-control-anti-pattern.html +8 -15
- package/html/private/launch/README.html +8 -15
- package/html/private/launch/auth-cleanup-summary.html +8 -15
- package/html/private/launch/bubble-plugin-specification.html +8 -15
- package/html/private/launch/go-to-market-strategy.html +8 -15
- package/html/private/launch/launch-announcements.html +8 -15
- package/html/private/launch/vercel-deployment-auth-setup.html +8 -15
- package/html/private/next-steps-walkthrough.html +8 -15
- package/html/private/supabase-auth-implementation-completed.html +8 -15
- package/html/private/supabase-auth-implementation-plan.html +8 -15
- package/html/private/supabase-auth-integration-plan.html +8 -15
- package/html/private/supabase-auth-setup-guide.html +8 -15
- package/html/private/test-private-doc.html +8 -15
- package/html/private/user-management-tooling.html +8 -15
- package/html/prompts/beautiful-documentation-design.html +8 -15
- package/html/prompts/markdown-document-standards.html +8 -15
- package/html/prompts/project-rename-strategy-sasha-publish.html +517 -0
- package/html/sitemap.xml +66 -54
- package/html/vercel-cli-setup-guide.html +8 -15
- package/html/vercel-first-time-setup-guide.html +8 -15
- package/lib/emoji-mapper.js +10 -0
- package/package.json +1 -1
package/doc-builder.config.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
-
"configVersion": "1.9.
|
|
2
|
+
"configVersion": "1.9.14",
|
|
3
3
|
"docsDir": "docs",
|
|
4
4
|
"outputDir": "html",
|
|
5
5
|
"siteName": "@knowcode/doc-builder",
|
|
@@ -21,7 +21,8 @@ module.exports = {
|
|
|
21
21
|
"attachments": true,
|
|
22
22
|
"dynamicNavIcons": true,
|
|
23
23
|
"subtleColors": true,
|
|
24
|
-
"privateDirectoryAuth": false
|
|
24
|
+
"privateDirectoryAuth": false,
|
|
25
|
+
"banner": false
|
|
25
26
|
},
|
|
26
27
|
"auth": {
|
|
27
28
|
"supabaseUrl": "https://xcihhnfcitjrwbynxmka.supabase.co",
|
|
@@ -31,6 +32,13 @@ module.exports = {
|
|
|
31
32
|
"daysBack": 14,
|
|
32
33
|
"enabled": true
|
|
33
34
|
},
|
|
35
|
+
"banner": {
|
|
36
|
+
"enabled": false,
|
|
37
|
+
"text": "This documentation is a preview version - some content may be incomplete",
|
|
38
|
+
"icon": "fas fa-exclamation-triangle",
|
|
39
|
+
"type": "warning",
|
|
40
|
+
"dismissible": true
|
|
41
|
+
},
|
|
34
42
|
"folderOrder": [],
|
|
35
43
|
"folderDescriptions": {},
|
|
36
44
|
"folderIcons": {},
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"configVersion": "1.9.11",
|
|
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
|
+
"tooltips": true,
|
|
13
|
+
"search": false,
|
|
14
|
+
"darkMode": true,
|
|
15
|
+
"phosphorIcons": true,
|
|
16
|
+
"phosphorWeight": "regular",
|
|
17
|
+
"phosphorSize": "1.2em",
|
|
18
|
+
"normalizeTitle": true,
|
|
19
|
+
"showPdfDownload": true,
|
|
20
|
+
"menuDefaultOpen": false,
|
|
21
|
+
"attachments": true,
|
|
22
|
+
"dynamicNavIcons": true,
|
|
23
|
+
"subtleColors": true,
|
|
24
|
+
"privateDirectoryAuth": false
|
|
25
|
+
},
|
|
26
|
+
"auth": {
|
|
27
|
+
"supabaseUrl": "https://xcihhnfcitjrwbynxmka.supabase.co",
|
|
28
|
+
"supabaseAnonKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InhjaWhobmZjaXRqcndieW54bWthIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTM0Mzc2MzcsImV4cCI6MjA2OTAxMzYzN30.zvWp3JFIR8fBIiwuFF5gqOR_Kxb42baZS5fsBz60XOY"
|
|
29
|
+
},
|
|
30
|
+
"changelog": {
|
|
31
|
+
"daysBack": 14,
|
|
32
|
+
"enabled": true
|
|
33
|
+
},
|
|
34
|
+
"folderOrder": [],
|
|
35
|
+
"folderDescriptions": {},
|
|
36
|
+
"folderIcons": {},
|
|
37
|
+
"deployment": {
|
|
38
|
+
"platform": "vercel",
|
|
39
|
+
"outputDirectory": "html"
|
|
40
|
+
},
|
|
41
|
+
"seo": {
|
|
42
|
+
"enabled": true,
|
|
43
|
+
"siteUrl": "https://doc-builder-delta.vercel.app",
|
|
44
|
+
"author": "Lindsay Smith",
|
|
45
|
+
"twitterHandle": "@planbbackups",
|
|
46
|
+
"language": "en-US",
|
|
47
|
+
"keywords": [
|
|
48
|
+
"documentation",
|
|
49
|
+
"markdown",
|
|
50
|
+
"static site generator",
|
|
51
|
+
"vercel",
|
|
52
|
+
"notion-style"
|
|
53
|
+
],
|
|
54
|
+
"titleTemplate": "{pageTitle} | {siteName}",
|
|
55
|
+
"autoKeywords": true,
|
|
56
|
+
"keywordLimit": 7,
|
|
57
|
+
"descriptionFallback": "smart",
|
|
58
|
+
"organization": {
|
|
59
|
+
"name": "Knowcode Ltd",
|
|
60
|
+
"url": "https://knowcode.tech",
|
|
61
|
+
"logo": ""
|
|
62
|
+
},
|
|
63
|
+
"ogImage": "/og-default.png",
|
|
64
|
+
"generateSitemap": true,
|
|
65
|
+
"generateRobotsTxt": true,
|
|
66
|
+
"customMetaTags": [
|
|
67
|
+
{
|
|
68
|
+
"name": "google-site-verification",
|
|
69
|
+
"content": "FtzcDTf5BQ9K5EfnGazQkgU2U4FiN3ITzM7gHwqUAqQ"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "msvalidate.01",
|
|
73
|
+
"content": "B2D8C4C12C530D47AA962B24CAA09630"
|
|
74
|
+
}
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
"attachmentTypes": [
|
|
78
|
+
".pdf",
|
|
79
|
+
".doc",
|
|
80
|
+
".docx",
|
|
81
|
+
".xls",
|
|
82
|
+
".xlsx",
|
|
83
|
+
".csv",
|
|
84
|
+
".ppt",
|
|
85
|
+
".pptx",
|
|
86
|
+
".txt",
|
|
87
|
+
".rtf",
|
|
88
|
+
".html",
|
|
89
|
+
".htm",
|
|
90
|
+
".zip",
|
|
91
|
+
".tar",
|
|
92
|
+
".gz",
|
|
93
|
+
".7z",
|
|
94
|
+
".rar",
|
|
95
|
+
".png",
|
|
96
|
+
".jpg",
|
|
97
|
+
".jpeg",
|
|
98
|
+
".gif",
|
|
99
|
+
".svg",
|
|
100
|
+
".webp",
|
|
101
|
+
".ico",
|
|
102
|
+
".bmp",
|
|
103
|
+
".json",
|
|
104
|
+
".xml",
|
|
105
|
+
".yaml",
|
|
106
|
+
".yml",
|
|
107
|
+
".toml",
|
|
108
|
+
".mp4",
|
|
109
|
+
".mp3",
|
|
110
|
+
".wav",
|
|
111
|
+
".avi",
|
|
112
|
+
".mov"
|
|
113
|
+
],
|
|
114
|
+
"productionUrl": "https://doc-builder-delta.vercel.app"
|
|
115
|
+
};
|
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-
|
|
103
|
-
"dateModified": "2025-
|
|
102
|
+
"datePublished": "2025-08-01T14:40:41.828Z",
|
|
103
|
+
"dateModified": "2025-08-01T14:40:41.828Z",
|
|
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.
|
|
136
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.14">Last updated: Aug 1, 2025, 02:40 PM UTC</span>
|
|
137
137
|
</div>
|
|
138
138
|
|
|
139
139
|
|
|
@@ -153,16 +153,7 @@
|
|
|
153
153
|
</div>
|
|
154
154
|
</header>
|
|
155
155
|
|
|
156
|
-
|
|
157
|
-
<div id="preview-banner" class="preview-banner">
|
|
158
|
-
<div class="banner-content">
|
|
159
|
-
<i class="fas fa-exclamation-triangle banner-icon"></i>
|
|
160
|
-
<span class="banner-text">This documentation is a preview version - some content may be incomplete</span>
|
|
161
|
-
<button id="dismiss-banner" class="banner-dismiss" aria-label="Dismiss banner">
|
|
162
|
-
<i class="fas fa-times"></i>
|
|
163
|
-
</button>
|
|
164
|
-
</div>
|
|
165
|
-
</div>
|
|
156
|
+
|
|
166
157
|
|
|
167
158
|
<!-- Breadcrumbs -->
|
|
168
159
|
<nav class="breadcrumbs" id="breadcrumbs">
|
|
@@ -175,7 +166,7 @@
|
|
|
175
166
|
<aside class="sidebar">
|
|
176
167
|
<div class="sidebar-header">
|
|
177
168
|
<div class="filter-box">
|
|
178
|
-
<input type="text" placeholder="
|
|
169
|
+
<input type="text" placeholder="Search menu..." class="filter-input" id="nav-filter">
|
|
179
170
|
<i class="fas fa-search filter-icon"></i>
|
|
180
171
|
</div>
|
|
181
172
|
</div>
|
|
@@ -187,6 +178,7 @@
|
|
|
187
178
|
</a>
|
|
188
179
|
<div class="nav-content" >
|
|
189
180
|
<a href="/README.html" class="nav-item active" data-tooltip="@knowcode/doc-builder."><i class="ph ph-file-text"></i> Overview</a>
|
|
181
|
+
<a href="/about-doc-builder.html" class="nav-item" data-tooltip="About @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> About Doc Builder</a>
|
|
190
182
|
<a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Index</a>
|
|
191
183
|
<a href="/image-modal-test.html" class="nav-item" data-tooltip="This document tests the new image modal functionality in doc-builder."><i class="ph ph-file-text"></i> Image Modal Test</a>
|
|
192
184
|
<a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="ph ph-check-circle" style="color: #059669;"></i> Vercel Cli Setup Guide</a>
|
|
@@ -243,7 +235,8 @@
|
|
|
243
235
|
</a>
|
|
244
236
|
<div class="nav-content" id="nav-prompts-1">
|
|
245
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>
|
|
246
|
-
<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
|
|
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
|
+
<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 "sasha-publish", including all package references,..."><i class="ph ph-x-circle" style="color: #dc2626;"></i> Project Rename Strategy Sasha Publish</a></div></div>
|
|
247
240
|
</nav>
|
|
248
241
|
<div class="resize-handle"></div>
|
|
249
242
|
</aside>
|