@knowcode/doc-builder 1.5.19 → 1.5.21

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/CHANGELOG.md CHANGED
@@ -5,7 +5,7 @@ All notable changes to @knowcode/doc-builder will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [1.5.19] - 2025-07-22
8
+ ## [1.5.20] - 2025-07-22
9
9
 
10
10
  ### Fixed
11
11
  - Force table cells to top-align with !important CSS
@@ -14,6 +14,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
  - Added rules for nested elements in table cells
15
15
  - Fixes issue where table cells were center-aligned instead of top-aligned
16
16
 
17
+ ## [1.5.19] - 2025-07-22
18
+
19
+ ### Fixed
20
+ - Force table cells to top-align with !important CSS (version was already published)
21
+
17
22
  ## [1.5.18] - 2025-07-22
18
23
 
19
24
  ### Documentation
@@ -704,6 +704,45 @@ table th > * {
704
704
  vertical-align: top;
705
705
  }
706
706
 
707
+ /* Remove top margin from first element in table cells */
708
+ td > *:first-child,
709
+ th > *:first-child {
710
+ margin-top: 0 !important;
711
+ }
712
+
713
+ /* Remove bottom margin from last element in table cells */
714
+ td > *:last-child,
715
+ th > *:last-child {
716
+ margin-bottom: 0 !important;
717
+ }
718
+
719
+ /* Specifically target common block elements that might be first in cells */
720
+ td > h1:first-child,
721
+ td > h2:first-child,
722
+ td > h3:first-child,
723
+ td > h4:first-child,
724
+ td > h5:first-child,
725
+ td > h6:first-child,
726
+ td > p:first-child,
727
+ td > ul:first-child,
728
+ td > ol:first-child,
729
+ td > blockquote:first-child,
730
+ td > pre:first-child,
731
+ th > h1:first-child,
732
+ th > h2:first-child,
733
+ th > h3:first-child,
734
+ th > h4:first-child,
735
+ th > h5:first-child,
736
+ th > h6:first-child,
737
+ th > p:first-child,
738
+ th > ul:first-child,
739
+ th > ol:first-child,
740
+ th > blockquote:first-child,
741
+ th > pre:first-child {
742
+ margin-top: 0 !important;
743
+ padding-top: 0 !important;
744
+ }
745
+
707
746
  tr:last-child td {
708
747
  border-bottom: none;
709
748
  }
package/html/README.html CHANGED
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.100Z",
66
- "dateModified": "2025-07-22T16:04:34.100Z",
65
+ "datePublished": "2025-07-22T16:12:47.246Z",
66
+ "dateModified": "2025-07-22T16:12:47.246Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/README.html"
@@ -96,7 +96,7 @@
96
96
 
97
97
  <div class="header-actions">
98
98
  <div class="deployment-info">
99
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
99
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
100
100
  </div>
101
101
 
102
102
 
@@ -704,6 +704,45 @@ table th > * {
704
704
  vertical-align: top;
705
705
  }
706
706
 
707
+ /* Remove top margin from first element in table cells */
708
+ td > *:first-child,
709
+ th > *:first-child {
710
+ margin-top: 0 !important;
711
+ }
712
+
713
+ /* Remove bottom margin from last element in table cells */
714
+ td > *:last-child,
715
+ th > *:last-child {
716
+ margin-bottom: 0 !important;
717
+ }
718
+
719
+ /* Specifically target common block elements that might be first in cells */
720
+ td > h1:first-child,
721
+ td > h2:first-child,
722
+ td > h3:first-child,
723
+ td > h4:first-child,
724
+ td > h5:first-child,
725
+ td > h6:first-child,
726
+ td > p:first-child,
727
+ td > ul:first-child,
728
+ td > ol:first-child,
729
+ td > blockquote:first-child,
730
+ td > pre:first-child,
731
+ th > h1:first-child,
732
+ th > h2:first-child,
733
+ th > h3:first-child,
734
+ th > h4:first-child,
735
+ th > h5:first-child,
736
+ th > h6:first-child,
737
+ th > p:first-child,
738
+ th > ul:first-child,
739
+ th > ol:first-child,
740
+ th > blockquote:first-child,
741
+ th > pre:first-child {
742
+ margin-top: 0 !important;
743
+ padding-top: 0 !important;
744
+ }
745
+
707
746
  tr:last-child td {
708
747
  border-bottom: none;
709
748
  }
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.110Z",
66
- "dateModified": "2025-07-22T16:04:34.110Z",
65
+ "datePublished": "2025-07-22T16:12:47.256Z",
66
+ "dateModified": "2025-07-22T16:12:47.256Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
@@ -96,7 +96,7 @@
96
96
 
97
97
  <div class="header-actions">
98
98
  <div class="deployment-info">
99
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
99
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
100
100
  </div>
101
101
 
102
102
 
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.113Z",
66
- "dateModified": "2025-07-22T16:04:34.113Z",
65
+ "datePublished": "2025-07-22T16:12:47.259Z",
66
+ "dateModified": "2025-07-22T16:12:47.259Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/authentication-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.123Z",
66
- "dateModified": "2025-07-22T16:04:34.123Z",
65
+ "datePublished": "2025-07-22T16:12:47.262Z",
66
+ "dateModified": "2025-07-22T16:12:47.262Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/claude-workflow-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.132Z",
66
- "dateModified": "2025-07-22T16:04:34.132Z",
65
+ "datePublished": "2025-07-22T16:12:47.266Z",
66
+ "dateModified": "2025-07-22T16:12:47.266Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/documentation-standards.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.148Z",
66
- "dateModified": "2025-07-22T16:04:34.148Z",
65
+ "datePublished": "2025-07-22T16:12:47.273Z",
66
+ "dateModified": "2025-07-22T16:12:47.273Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/google-site-verification-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.156Z",
66
- "dateModified": "2025-07-22T16:04:34.156Z",
65
+ "datePublished": "2025-07-22T16:12:47.275Z",
66
+ "dateModified": "2025-07-22T16:12:47.275Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/phosphor-icons-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.165Z",
66
- "dateModified": "2025-07-22T16:04:34.165Z",
65
+ "datePublished": "2025-07-22T16:12:47.279Z",
66
+ "dateModified": "2025-07-22T16:12:47.279Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/seo-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.176Z",
66
- "dateModified": "2025-07-22T16:04:34.176Z",
65
+ "datePublished": "2025-07-22T16:12:47.285Z",
66
+ "dateModified": "2025-07-22T16:12:47.285Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/seo-optimization-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.179Z",
66
- "dateModified": "2025-07-22T16:04:34.179Z",
65
+ "datePublished": "2025-07-22T16:12:47.289Z",
66
+ "dateModified": "2025-07-22T16:12:47.289Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/troubleshooting-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.184Z",
66
- "dateModified": "2025-07-22T16:04:34.184Z",
65
+ "datePublished": "2025-07-22T16:12:47.295Z",
66
+ "dateModified": "2025-07-22T16:12:47.295Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/windows-setup-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
package/html/index.html CHANGED
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.100Z",
66
- "dateModified": "2025-07-22T16:04:34.100Z",
65
+ "datePublished": "2025-07-22T16:12:47.246Z",
66
+ "dateModified": "2025-07-22T16:12:47.246Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/README.html"
@@ -96,7 +96,7 @@
96
96
 
97
97
  <div class="header-actions">
98
98
  <div class="deployment-info">
99
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
99
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
100
100
  </div>
101
101
 
102
102
 
package/html/sitemap.xml CHANGED
@@ -2,103 +2,103 @@
2
2
  <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3
3
  <url>
4
4
  <loc>https://doc-builder-delta.vercel.app/404.html</loc>
5
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
5
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
6
6
  <changefreq>monthly</changefreq>
7
7
  <priority>0.6</priority>
8
8
  </url>
9
9
  <url>
10
10
  <loc>https://doc-builder-delta.vercel.app/README.html</loc>
11
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
11
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
12
12
  <changefreq>monthly</changefreq>
13
13
  <priority>0.6</priority>
14
14
  </url>
15
15
  <url>
16
16
  <loc>https://doc-builder-delta.vercel.app/claude-workflow-guide.html</loc>
17
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
17
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
18
18
  <changefreq>monthly</changefreq>
19
19
  <priority>0.8</priority>
20
20
  </url>
21
21
  <url>
22
22
  <loc>https://doc-builder-delta.vercel.app/documentation-index.html</loc>
23
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
23
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
24
24
  <changefreq>monthly</changefreq>
25
25
  <priority>0.6</priority>
26
26
  </url>
27
27
  <url>
28
28
  <loc>https://doc-builder-delta.vercel.app/guides/authentication-guide.html</loc>
29
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
29
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
30
30
  <changefreq>monthly</changefreq>
31
31
  <priority>0.8</priority>
32
32
  </url>
33
33
  <url>
34
34
  <loc>https://doc-builder-delta.vercel.app/guides/claude-workflow-guide.html</loc>
35
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
35
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
36
36
  <changefreq>monthly</changefreq>
37
37
  <priority>0.8</priority>
38
38
  </url>
39
39
  <url>
40
40
  <loc>https://doc-builder-delta.vercel.app/guides/document-standards.html</loc>
41
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
41
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
42
42
  <changefreq>monthly</changefreq>
43
43
  <priority>0.8</priority>
44
44
  </url>
45
45
  <url>
46
46
  <loc>https://doc-builder-delta.vercel.app/guides/documentation-standards.html</loc>
47
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
47
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
48
48
  <changefreq>monthly</changefreq>
49
49
  <priority>0.8</priority>
50
50
  </url>
51
51
  <url>
52
52
  <loc>https://doc-builder-delta.vercel.app/guides/google-site-verification-guide.html</loc>
53
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
53
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
54
54
  <changefreq>monthly</changefreq>
55
55
  <priority>0.8</priority>
56
56
  </url>
57
57
  <url>
58
58
  <loc>https://doc-builder-delta.vercel.app/guides/phosphor-icons-guide.html</loc>
59
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
59
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
60
60
  <changefreq>monthly</changefreq>
61
61
  <priority>0.8</priority>
62
62
  </url>
63
63
  <url>
64
64
  <loc>https://doc-builder-delta.vercel.app/guides/seo-guide.html</loc>
65
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
65
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
66
66
  <changefreq>monthly</changefreq>
67
67
  <priority>0.8</priority>
68
68
  </url>
69
69
  <url>
70
70
  <loc>https://doc-builder-delta.vercel.app/guides/seo-optimization-guide.html</loc>
71
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
71
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
72
72
  <changefreq>monthly</changefreq>
73
73
  <priority>0.8</priority>
74
74
  </url>
75
75
  <url>
76
76
  <loc>https://doc-builder-delta.vercel.app/guides/troubleshooting-guide.html</loc>
77
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
77
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
78
78
  <changefreq>monthly</changefreq>
79
79
  <priority>0.8</priority>
80
80
  </url>
81
81
  <url>
82
82
  <loc>https://doc-builder-delta.vercel.app/guides/windows-setup-guide.html</loc>
83
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
83
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
84
84
  <changefreq>monthly</changefreq>
85
85
  <priority>0.8</priority>
86
86
  </url>
87
87
  <url>
88
88
  <loc>https://doc-builder-delta.vercel.app/index.html</loc>
89
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
89
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
90
90
  <changefreq>weekly</changefreq>
91
91
  <priority>1.0</priority>
92
92
  </url>
93
93
  <url>
94
94
  <loc>https://doc-builder-delta.vercel.app/vercel-cli-setup-guide.html</loc>
95
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
95
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
96
96
  <changefreq>monthly</changefreq>
97
97
  <priority>0.8</priority>
98
98
  </url>
99
99
  <url>
100
100
  <loc>https://doc-builder-delta.vercel.app/vercel-first-time-setup-guide.html</loc>
101
- <lastmod>2025-07-22T16:04:34.197Z</lastmod>
101
+ <lastmod>2025-07-22T16:12:47.310Z</lastmod>
102
102
  <changefreq>monthly</changefreq>
103
103
  <priority>0.8</priority>
104
104
  </url>
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.185Z",
66
- "dateModified": "2025-07-22T16:04:34.185Z",
65
+ "datePublished": "2025-07-22T16:12:47.298Z",
66
+ "dateModified": "2025-07-22T16:12:47.298Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/vercel-cli-setup-guide.html"
@@ -96,7 +96,7 @@
96
96
 
97
97
  <div class="header-actions">
98
98
  <div class="deployment-info">
99
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
99
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
100
100
  </div>
101
101
 
102
102
 
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T16:04:34.187Z",
66
- "dateModified": "2025-07-22T16:04:34.187Z",
65
+ "datePublished": "2025-07-22T16:12:47.301Z",
66
+ "dateModified": "2025-07-22T16:12:47.301Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/vercel-first-time-setup-guide.html"
@@ -96,7 +96,7 @@
96
96
 
97
97
  <div class="header-actions">
98
98
  <div class="deployment-info">
99
- <span class="deployment-date" title="Built with doc-builder v1.5.19">Last updated: Jul 22, 2025, 04:04 PM UTC</span>
99
+ <span class="deployment-date" title="Built with doc-builder v1.5.20">Last updated: Jul 22, 2025, 04:12 PM UTC</span>
100
100
  </div>
101
101
 
102
102
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowcode/doc-builder",
3
- "version": "1.5.19",
3
+ "version": "1.5.21",
4
4
  "description": "Reusable documentation builder for markdown-based sites with Vercel deployment support",
5
5
  "main": "index.js",
6
6
  "bin": {