@knowcode/doc-builder 1.9.20 → 1.9.22
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/cli.js +15 -1
- package/doc-builder.config.js +4 -2
- package/doc-builder.config.js.backup.1754567425847 +124 -0
- package/doc-builder.config.js.backup.1754568137859 +126 -0
- package/html/README.html +3 -3
- package/html/about-doc-builder.html +3 -3
- package/html/documentation-index.html +3 -3
- package/html/guides/authentication-default-change.html +3 -3
- package/html/guides/authentication-guide.html +3 -3
- package/html/guides/claude-workflow-guide.html +3 -3
- package/html/guides/configuration-guide.html +3 -3
- package/html/guides/documentation-standards.html +3 -3
- package/html/guides/html-embedding-guide.html +3 -3
- package/html/guides/image-modal-guide.html +3 -3
- package/html/guides/phosphor-icons-guide.html +3 -3
- package/html/guides/private-directory-authentication-troubleshooting.html +3 -3
- package/html/guides/private-directory-authentication.html +3 -3
- package/html/guides/public-site-deployment.html +3 -3
- package/html/guides/search-engine-verification-guide.html +3 -3
- package/html/guides/seo-guide.html +3 -3
- package/html/guides/seo-optimization-guide.html +3 -3
- package/html/guides/supabase-authentication-complete-guide.html +3 -3
- package/html/guides/troubleshooting-guide.html +3 -3
- package/html/guides/windows-setup-guide.html +3 -3
- package/html/image-modal-test.html +3 -3
- package/html/index.html +3 -3
- package/html/private/cache-control-anti-pattern.html +3 -3
- package/html/private/launch/README.html +3 -3
- package/html/private/launch/auth-cleanup-summary.html +3 -3
- package/html/private/launch/bubble-plugin-specification.html +3 -3
- package/html/private/launch/go-to-market-strategy.html +3 -3
- package/html/private/launch/launch-announcements.html +3 -3
- package/html/private/launch/vercel-deployment-auth-setup.html +3 -3
- package/html/private/next-steps-walkthrough.html +3 -3
- package/html/private/supabase-auth-implementation-completed.html +3 -3
- package/html/private/supabase-auth-implementation-plan.html +3 -3
- package/html/private/supabase-auth-integration-plan.html +3 -3
- package/html/private/supabase-auth-setup-guide.html +3 -3
- package/html/private/test-private-doc.html +3 -3
- package/html/private/user-management-tooling.html +3 -3
- package/html/prompts/beautiful-documentation-design.html +3 -3
- package/html/prompts/markdown-document-standards.html +3 -3
- package/html/prompts/project-rename-strategy-sasha-publish.html +3 -3
- package/html/sitemap.xml +59 -59
- package/html/test-questions/how-does-it-work%3F.html +3 -3
- package/html/test-questions/step-1%3A%20getting-started.html +3 -3
- package/html/test-questions/what-is-the-purpose.html +3 -3
- package/html/vercel-cli-setup-guide.html +3 -3
- package/html/vercel-first-time-setup-guide.html +3 -3
- package/html-static/404.html +115 -0
- package/html-static/README.html +456 -0
- package/html-static/about-doc-builder.html +425 -0
- package/html-static/css/notion-style.css +2426 -0
- package/html-static/documentation-index.html +405 -0
- package/html-static/guides/authentication-default-change.html +304 -0
- package/html-static/guides/authentication-guide.html +443 -0
- package/html-static/guides/claude-workflow-guide.html +1008 -0
- package/html-static/guides/configuration-guide.html +406 -0
- package/html-static/guides/documentation-standards.html +628 -0
- package/html-static/guides/html-embedding-guide.html +395 -0
- package/html-static/guides/image-modal-guide.html +449 -0
- package/html-static/guides/phosphor-icons-guide.html +518 -0
- package/html-static/guides/private-directory-authentication-troubleshooting.html +489 -0
- package/html-static/guides/private-directory-authentication.html +475 -0
- package/html-static/guides/public-site-deployment.html +365 -0
- package/html-static/guides/search-engine-verification-guide.html +476 -0
- package/html-static/guides/seo-guide.html +595 -0
- package/html-static/guides/seo-optimization-guide.html +821 -0
- package/html-static/guides/supabase-authentication-complete-guide.html +800 -0
- package/html-static/guides/troubleshooting-guide.html +567 -0
- package/html-static/guides/windows-setup-guide.html +793 -0
- package/html-static/image-modal-test.html +252 -0
- package/html-static/index.html +456 -0
- package/html-static/js/main.js +1692 -0
- package/html-static/prompts/Screenshot 2025-08-02 at 08.49.55.png +0 -0
- package/html-static/prompts/beautiful-documentation-design.html +718 -0
- package/html-static/prompts/markdown-document-standards.html +356 -0
- package/html-static/prompts/project-rename-strategy-sasha-publish.html +464 -0
- package/html-static/robots.txt +5 -0
- package/html-static/sitemap.xml +195 -0
- package/html-static/test-questions/how-does-it-work%3F.html +228 -0
- package/html-static/test-questions/step-1%3A%20getting-started.html +223 -0
- package/html-static/test-questions/what-is-the-purpose.html +227 -0
- package/html-static/vercel-cli-setup-guide.html +429 -0
- package/html-static/vercel-first-time-setup-guide.html +388 -0
- package/lib/config.js +9 -2
- package/lib/core-builder.js +177 -14
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -76,13 +76,17 @@ program
|
|
|
76
76
|
.option('--menu-closed', 'start with navigation menu closed')
|
|
77
77
|
.option('--no-auth', 'build without authentication (for public sites)')
|
|
78
78
|
.option('--no-attachments', 'skip copying attachment files (Excel, PDF, etc.)')
|
|
79
|
+
.option('--no-static', 'disable static output generation (default: enabled)')
|
|
80
|
+
.option('--static-dir <dir>', 'directory for static output (default: html-static)')
|
|
79
81
|
.addHelpText('after', `
|
|
80
82
|
${chalk.yellow('Examples:')}
|
|
81
|
-
${chalk.gray('$')} doc-builder build ${chalk.gray('# Build with defaults')}
|
|
83
|
+
${chalk.gray('$')} doc-builder build ${chalk.gray('# Build with defaults (includes static)')}
|
|
82
84
|
${chalk.gray('$')} doc-builder build --input docs --output dist
|
|
83
85
|
${chalk.gray('$')} doc-builder build --preset notion-inspired ${chalk.gray('# Use Notion-inspired preset')}
|
|
84
86
|
${chalk.gray('$')} doc-builder build --config my-config.js ${chalk.gray('# Use custom config')}
|
|
85
87
|
${chalk.gray('$')} doc-builder build --no-auth ${chalk.gray('# Build public site without authentication')}
|
|
88
|
+
${chalk.gray('$')} doc-builder build --no-static ${chalk.gray('# Skip static output generation')}
|
|
89
|
+
${chalk.gray('$')} doc-builder build --static-dir public ${chalk.gray('# Use custom static output directory')}
|
|
86
90
|
`)
|
|
87
91
|
.action(async (options) => {
|
|
88
92
|
const spinner = ora('Building documentation...').start();
|
|
@@ -97,6 +101,16 @@ ${chalk.yellow('Examples:')}
|
|
|
97
101
|
config.features.authentication = false;
|
|
98
102
|
}
|
|
99
103
|
|
|
104
|
+
// Handle static output options
|
|
105
|
+
if (options.static === false) {
|
|
106
|
+
config.features = config.features || {};
|
|
107
|
+
config.features.staticOutput = false;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
if (options.staticDir) {
|
|
111
|
+
config.staticOutputDir = options.staticDir;
|
|
112
|
+
}
|
|
113
|
+
|
|
100
114
|
await build(config);
|
|
101
115
|
spinner.succeed('Documentation built successfully!');
|
|
102
116
|
} catch (error) {
|
package/doc-builder.config.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
-
"configVersion": "1.9.
|
|
2
|
+
"configVersion": "1.9.21",
|
|
3
3
|
"docsDir": "docs",
|
|
4
4
|
"outputDir": "html",
|
|
5
5
|
"siteName": "@knowcode/doc-builder",
|
|
@@ -23,8 +23,10 @@ module.exports = {
|
|
|
23
23
|
"dynamicNavIcons": true,
|
|
24
24
|
"subtleColors": true,
|
|
25
25
|
"privateDirectoryAuth": false,
|
|
26
|
-
"banner": false
|
|
26
|
+
"banner": false,
|
|
27
|
+
"staticOutput": true
|
|
27
28
|
},
|
|
29
|
+
"staticOutputDir": "html-static",
|
|
28
30
|
"auth": {
|
|
29
31
|
"supabaseUrl": "https://xcihhnfcitjrwbynxmka.supabase.co",
|
|
30
32
|
"supabaseAnonKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InhjaWhobmZjaXRqcndieW54bWthIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTM0Mzc2MzcsImV4cCI6MjA2OTAxMzYzN30.zvWp3JFIR8fBIiwuFF5gqOR_Kxb42baZS5fsBz60XOY"
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"configVersion": "1.9.19",
|
|
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
|
+
};
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"configVersion": "1.9.20",
|
|
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
|
+
"staticOutput": true
|
|
28
|
+
},
|
|
29
|
+
"staticOutputDir": "html-static",
|
|
30
|
+
"auth": {
|
|
31
|
+
"supabaseUrl": "https://xcihhnfcitjrwbynxmka.supabase.co",
|
|
32
|
+
"supabaseAnonKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InhjaWhobmZjaXRqcndieW54bWthIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTM0Mzc2MzcsImV4cCI6MjA2OTAxMzYzN30.zvWp3JFIR8fBIiwuFF5gqOR_Kxb42baZS5fsBz60XOY"
|
|
33
|
+
},
|
|
34
|
+
"changelog": {
|
|
35
|
+
"daysBack": 14,
|
|
36
|
+
"enabled": true
|
|
37
|
+
},
|
|
38
|
+
"banner": {
|
|
39
|
+
"enabled": false,
|
|
40
|
+
"text": "This documentation is a preview version - some content may be incomplete",
|
|
41
|
+
"icon": "fas fa-exclamation-triangle",
|
|
42
|
+
"type": "warning",
|
|
43
|
+
"dismissible": true
|
|
44
|
+
},
|
|
45
|
+
"folderOrder": [],
|
|
46
|
+
"folderDescriptions": {},
|
|
47
|
+
"folderIcons": {},
|
|
48
|
+
"deployment": {
|
|
49
|
+
"platform": "vercel",
|
|
50
|
+
"outputDirectory": "html"
|
|
51
|
+
},
|
|
52
|
+
"seo": {
|
|
53
|
+
"enabled": true,
|
|
54
|
+
"siteUrl": "https://doc-builder-delta.vercel.app",
|
|
55
|
+
"author": "Lindsay Smith",
|
|
56
|
+
"twitterHandle": "@planbbackups",
|
|
57
|
+
"language": "en-US",
|
|
58
|
+
"keywords": [
|
|
59
|
+
"documentation",
|
|
60
|
+
"markdown",
|
|
61
|
+
"static site generator",
|
|
62
|
+
"vercel",
|
|
63
|
+
"notion-style"
|
|
64
|
+
],
|
|
65
|
+
"titleTemplate": "{pageTitle} | {siteName}",
|
|
66
|
+
"autoKeywords": true,
|
|
67
|
+
"keywordLimit": 7,
|
|
68
|
+
"descriptionFallback": "smart",
|
|
69
|
+
"organization": {
|
|
70
|
+
"name": "Knowcode Ltd",
|
|
71
|
+
"url": "https://knowcode.tech",
|
|
72
|
+
"logo": ""
|
|
73
|
+
},
|
|
74
|
+
"ogImage": "/og-default.png",
|
|
75
|
+
"generateSitemap": true,
|
|
76
|
+
"generateRobotsTxt": true,
|
|
77
|
+
"customMetaTags": [
|
|
78
|
+
{
|
|
79
|
+
"name": "google-site-verification",
|
|
80
|
+
"content": "FtzcDTf5BQ9K5EfnGazQkgU2U4FiN3ITzM7gHwqUAqQ"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "msvalidate.01",
|
|
84
|
+
"content": "B2D8C4C12C530D47AA962B24CAA09630"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
"attachmentTypes": [
|
|
89
|
+
".pdf",
|
|
90
|
+
".doc",
|
|
91
|
+
".docx",
|
|
92
|
+
".xls",
|
|
93
|
+
".xlsx",
|
|
94
|
+
".csv",
|
|
95
|
+
".ppt",
|
|
96
|
+
".pptx",
|
|
97
|
+
".txt",
|
|
98
|
+
".rtf",
|
|
99
|
+
".html",
|
|
100
|
+
".htm",
|
|
101
|
+
".zip",
|
|
102
|
+
".tar",
|
|
103
|
+
".gz",
|
|
104
|
+
".7z",
|
|
105
|
+
".rar",
|
|
106
|
+
".png",
|
|
107
|
+
".jpg",
|
|
108
|
+
".jpeg",
|
|
109
|
+
".gif",
|
|
110
|
+
".svg",
|
|
111
|
+
".webp",
|
|
112
|
+
".ico",
|
|
113
|
+
".bmp",
|
|
114
|
+
".json",
|
|
115
|
+
".xml",
|
|
116
|
+
".yaml",
|
|
117
|
+
".yml",
|
|
118
|
+
".toml",
|
|
119
|
+
".mp4",
|
|
120
|
+
".mp3",
|
|
121
|
+
".wav",
|
|
122
|
+
".avi",
|
|
123
|
+
".mov"
|
|
124
|
+
],
|
|
125
|
+
"productionUrl": "https://doc-builder-delta.vercel.app"
|
|
126
|
+
};
|
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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.108Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.108Z",
|
|
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.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.121Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.121Z",
|
|
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.
|
|
136
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.125Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.125Z",
|
|
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.
|
|
136
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.130Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.130Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.134Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.134Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.139Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.139Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.142Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.142Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.147Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.147Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.150Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.150Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.154Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.154Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.157Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.157Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.161Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.161Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.164Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.164Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.167Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.167Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.169Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.169Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM 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-
|
|
103
|
-
"dateModified": "2025-08-
|
|
102
|
+
"datePublished": "2025-08-07T12:04:03.175Z",
|
|
103
|
+
"dateModified": "2025-08-07T12:04:03.175Z",
|
|
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.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.21">Last updated: Aug 7, 2025, 12:04 PM UTC</span>
|
|
143
143
|
</div>
|
|
144
144
|
|
|
145
145
|
|