@knowcode/doc-builder 1.9.28 → 1.9.29
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/assets/js/main.js +14 -3
- package/doc-builder.config.js +1 -1
- package/doc-builder.config.js.backup.1755034500990 +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/js/main.js +14 -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/README.html +3 -3
- package/html-static/about-doc-builder.html +3 -3
- package/html-static/documentation-index.html +3 -3
- package/html-static/guides/authentication-default-change.html +3 -3
- package/html-static/guides/authentication-guide.html +3 -3
- package/html-static/guides/claude-workflow-guide.html +3 -3
- package/html-static/guides/configuration-guide.html +3 -3
- package/html-static/guides/documentation-standards.html +3 -3
- package/html-static/guides/html-embedding-guide.html +3 -3
- package/html-static/guides/image-modal-guide.html +3 -3
- package/html-static/guides/phosphor-icons-guide.html +3 -3
- package/html-static/guides/private-directory-authentication-troubleshooting.html +3 -3
- package/html-static/guides/private-directory-authentication.html +3 -3
- package/html-static/guides/public-site-deployment.html +3 -3
- package/html-static/guides/search-engine-verification-guide.html +3 -3
- package/html-static/guides/seo-guide.html +3 -3
- package/html-static/guides/seo-optimization-guide.html +3 -3
- package/html-static/guides/supabase-authentication-complete-guide.html +3 -3
- package/html-static/guides/troubleshooting-guide.html +3 -3
- package/html-static/guides/windows-setup-guide.html +3 -3
- package/html-static/image-modal-test.html +3 -3
- package/html-static/index.html +3 -3
- package/html-static/js/main.js +14 -3
- package/html-static/prompts/beautiful-documentation-design.html +3 -3
- package/html-static/prompts/markdown-document-standards.html +3 -3
- package/html-static/prompts/project-rename-strategy-sasha-publish.html +3 -3
- package/html-static/sitemap.xml +32 -32
- package/html-static/test-questions/how-does-it-work%3F.html +3 -3
- package/html-static/test-questions/step-1%3A%20getting-started.html +3 -3
- package/html-static/test-questions/what-is-the-purpose.html +3 -3
- package/html-static/vercel-cli-setup-guide.html +3 -3
- package/html-static/vercel-first-time-setup-guide.html +3 -3
- package/package.json +1 -1
package/assets/js/main.js
CHANGED
|
@@ -1567,7 +1567,10 @@ function generateBreadcrumbs() {
|
|
|
1567
1567
|
}).join('<i class="fas fa-chevron-right breadcrumb-separator"></i>');
|
|
1568
1568
|
|
|
1569
1569
|
// For static builds, add timestamp and PDF button to breadcrumbs
|
|
1570
|
-
if (isStaticBuild
|
|
1570
|
+
if (isStaticBuild) {
|
|
1571
|
+
// Use buildDate if available, otherwise use a fallback
|
|
1572
|
+
const displayDate = buildDate || 'Documentation';
|
|
1573
|
+
|
|
1571
1574
|
// Check if we're on the homepage (only "Home" breadcrumb)
|
|
1572
1575
|
const isHomePage = pathSegments.length === 0 ||
|
|
1573
1576
|
(pathSegments.length === 1 && (pathSegments[0] === 'index' || pathSegments[0] === 'README'));
|
|
@@ -1577,7 +1580,7 @@ function generateBreadcrumbs() {
|
|
|
1577
1580
|
const wrapperHTML = `
|
|
1578
1581
|
<div class="breadcrumbs-content breadcrumbs-homepage">
|
|
1579
1582
|
<div class="breadcrumbs-right">
|
|
1580
|
-
<span class="breadcrumb-date" title="Built with doc-builder v${docBuilderVersion || ''}">Last updated: ${
|
|
1583
|
+
<span class="breadcrumb-date" title="Built with doc-builder v${docBuilderVersion || ''}">Last updated: ${displayDate}</span>
|
|
1581
1584
|
<button class="breadcrumb-pdf-btn" onclick="exportToPDF()" title="Export to PDF" aria-label="Export to PDF">
|
|
1582
1585
|
<i class="fas fa-file-pdf"></i>
|
|
1583
1586
|
</button>
|
|
@@ -1594,7 +1597,7 @@ function generateBreadcrumbs() {
|
|
|
1594
1597
|
${breadcrumbHTML}
|
|
1595
1598
|
</div>
|
|
1596
1599
|
<div class="breadcrumbs-right">
|
|
1597
|
-
<span class="breadcrumb-date" title="Built with doc-builder v${docBuilderVersion || ''}">Last updated: ${
|
|
1600
|
+
<span class="breadcrumb-date" title="Built with doc-builder v${docBuilderVersion || ''}">Last updated: ${displayDate}</span>
|
|
1598
1601
|
<button class="breadcrumb-pdf-btn" onclick="exportToPDF()" title="Export to PDF" aria-label="Export to PDF">
|
|
1599
1602
|
<i class="fas fa-file-pdf"></i>
|
|
1600
1603
|
</button>
|
|
@@ -1603,6 +1606,14 @@ function generateBreadcrumbs() {
|
|
|
1603
1606
|
`;
|
|
1604
1607
|
breadcrumbContainer.innerHTML = wrapperHTML;
|
|
1605
1608
|
}
|
|
1609
|
+
|
|
1610
|
+
// Debug logging
|
|
1611
|
+
console.log('Static build breadcrumbs generated:', {
|
|
1612
|
+
isStaticBuild,
|
|
1613
|
+
buildDate,
|
|
1614
|
+
isHomePage,
|
|
1615
|
+
pathSegments
|
|
1616
|
+
});
|
|
1606
1617
|
} else {
|
|
1607
1618
|
breadcrumbContainer.innerHTML = breadcrumbHTML;
|
|
1608
1619
|
}
|
package/doc-builder.config.js
CHANGED
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"configVersion": "1.9.27",
|
|
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
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.072Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.072Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/README.html"
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
|
|
137
137
|
<div class="header-actions">
|
|
138
138
|
<div class="deployment-info">
|
|
139
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
139
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
140
140
|
</div>
|
|
141
141
|
|
|
142
142
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.085Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.085Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/about-doc-builder.html"
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
|
|
137
137
|
<div class="header-actions">
|
|
138
138
|
<div class="deployment-info">
|
|
139
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
139
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
140
140
|
</div>
|
|
141
141
|
|
|
142
142
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.089Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.089Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
|
|
137
137
|
<div class="header-actions">
|
|
138
138
|
<div class="deployment-info">
|
|
139
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
139
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
140
140
|
</div>
|
|
141
141
|
|
|
142
142
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.094Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.094Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/authentication-default-change.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.097Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.097Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/authentication-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.102Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.102Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/claude-workflow-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.106Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.106Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/configuration-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.112Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.112Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/documentation-standards.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.115Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.115Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/html-embedding-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.118Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.118Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/image-modal-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.122Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.122Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/phosphor-icons-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.125Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.125Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/private-directory-authentication-troubleshooting.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.129Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.129Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/private-directory-authentication.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.131Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.131Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/public-site-deployment.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.133Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.133Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/search-engine-verification-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.137Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.137Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/seo-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.142Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.142Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/seo-optimization-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.145Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.145Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/supabase-authentication-complete-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.148Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.148Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/troubleshooting-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.153Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.153Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/guides/windows-setup-guide.html"
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="header-actions">
|
|
144
144
|
<div class="deployment-info">
|
|
145
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
145
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
146
146
|
</div>
|
|
147
147
|
|
|
148
148
|
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"name": "Knowcode Ltd",
|
|
102
102
|
"url": "https://knowcode.tech"
|
|
103
103
|
},
|
|
104
|
-
"datePublished": "2025-08-
|
|
105
|
-
"dateModified": "2025-08-
|
|
104
|
+
"datePublished": "2025-08-12T21:35:01.156Z",
|
|
105
|
+
"dateModified": "2025-08-12T21:35:01.156Z",
|
|
106
106
|
"mainEntityOfPage": {
|
|
107
107
|
"@type": "WebPage",
|
|
108
108
|
"@id": "https://doc-builder-delta.vercel.app/image-modal-test.html"
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
|
|
137
137
|
<div class="header-actions">
|
|
138
138
|
<div class="deployment-info">
|
|
139
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
139
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.28">Last updated: Aug 12, 2025, 09:35 PM UTC</span>
|
|
140
140
|
</div>
|
|
141
141
|
|
|
142
142
|
|