@knowcode/doc-builder 1.8.7 → 1.9.1

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.
Files changed (48) hide show
  1. package/.claude/settings.local.json +2 -1
  2. package/CHANGELOG.md +27 -0
  3. package/README.md +2 -0
  4. package/assets/css/notion-style.css +141 -0
  5. package/assets/js/main.js +76 -0
  6. package/html/README.html +41 -149
  7. package/html/css/notion-style.css +13 -253
  8. package/html/documentation-index.html +24 -127
  9. package/html/guides/authentication-default-change.html +15 -130
  10. package/html/guides/authentication-guide.html +27 -141
  11. package/html/guides/claude-workflow-guide.html +30 -137
  12. package/html/guides/documentation-standards.html +19 -133
  13. package/html/guides/image-modal-guide.html +381 -0
  14. package/html/guides/phosphor-icons-guide.html +35 -150
  15. package/html/guides/private-directory-authentication.html +15 -130
  16. package/html/guides/public-site-deployment.html +15 -130
  17. package/html/guides/search-engine-verification-guide.html +15 -130
  18. package/html/guides/seo-guide.html +15 -130
  19. package/html/guides/seo-optimization-guide.html +46 -159
  20. package/html/guides/troubleshooting-guide.html +27 -141
  21. package/html/guides/windows-setup-guide.html +46 -161
  22. package/html/image-modal-test.html +189 -0
  23. package/html/index.html +41 -149
  24. package/html/js/auth.js +39 -118
  25. package/html/js/main.js +25 -183
  26. package/html/private/cache-control-anti-pattern.html +20 -135
  27. package/html/private/launch/README.html +23 -144
  28. package/html/private/launch/auth-cleanup-summary.html +32 -153
  29. package/html/private/launch/bubble-plugin-specification.html +15 -136
  30. package/html/private/launch/go-to-market-strategy.html +17 -138
  31. package/html/private/launch/launch-announcements.html +31 -151
  32. package/html/private/launch/vercel-deployment-auth-setup.html +17 -138
  33. package/html/private/next-steps-walkthrough.html +21 -136
  34. package/html/private/supabase-auth-implementation-completed.html +29 -143
  35. package/html/private/supabase-auth-implementation-plan.html +22 -136
  36. package/html/private/supabase-auth-integration-plan.html +29 -142
  37. package/html/private/supabase-auth-setup-guide.html +24 -139
  38. package/html/private/test-private-doc.html +15 -130
  39. package/html/private/user-management-tooling.html +15 -130
  40. package/html/prompts/markdown-document-standards.html +288 -0
  41. package/html/sitemap.xml +56 -44
  42. package/html/vercel-cli-setup-guide.html +19 -128
  43. package/html/vercel-first-time-setup-guide.html +16 -125
  44. package/lib/core-builder.js +1 -0
  45. package/lib/emoji-mapper.js +25 -0
  46. package/package/assets/css/notion-style.css +432 -135
  47. package/package/assets/js/main.js +259 -25
  48. package/package.json +1 -1
@@ -289,8 +289,7 @@ pre code {
289
289
  }
290
290
  }
291
291
 
292
- .logout-btn,
293
- .auth-btn {
292
+ .logout-btn {
294
293
  background: none;
295
294
  border: none;
296
295
  font-size: var(--text-lg);
@@ -313,13 +312,6 @@ pre code {
313
312
  transform: translateY(-1px);
314
313
  }
315
314
 
316
- .auth-btn:hover {
317
- background: var(--color-bg-tertiary);
318
- opacity: 1;
319
- color: var(--color-text-primary);
320
- transform: translateY(-1px);
321
- }
322
-
323
315
  /* Sidebar */
324
316
  .sidebar {
325
317
  position: relative;
@@ -327,7 +319,7 @@ pre code {
327
319
  background: var(--color-bg-secondary);
328
320
  border-right: 1px solid var(--color-border-default);
329
321
  overflow: hidden;
330
- transition: width var(--duration-normal), transform 0.3s ease, margin-left 0.3s ease;
322
+ transition: width var(--duration-normal);
331
323
  min-width: 200px;
332
324
  max-width: 500px;
333
325
  user-select: none;
@@ -338,14 +330,6 @@ pre code {
338
330
  height: 100%;
339
331
  }
340
332
 
341
- /* Desktop sidebar closed state */
342
- @media (min-width: 769px) {
343
- .sidebar.closed {
344
- transform: translateX(-100%);
345
- margin-left: calc(var(--sidebar-width) * -1);
346
- }
347
- }
348
-
349
333
  /* Banner adjustment no longer needed with relative positioning */
350
334
 
351
335
 
@@ -698,65 +682,12 @@ th {
698
682
  background: var(--color-bg-secondary);
699
683
  border-bottom: 1px solid var(--color-border-default);
700
684
  color: var(--color-text-primary);
701
- vertical-align: top !important;
702
685
  }
703
686
 
704
687
  td {
705
688
  padding: var(--space-3) var(--space-4);
706
689
  border-bottom: 1px solid var(--color-border-default);
707
690
  color: var(--color-text-primary);
708
- vertical-align: top !important;
709
- }
710
-
711
- /* Ensure all table cell content is top-aligned */
712
- table th,
713
- table td {
714
- vertical-align: top !important;
715
- }
716
-
717
- /* Ensure nested elements in table cells don't affect alignment */
718
- table td > *,
719
- table th > * {
720
- vertical-align: top;
721
- }
722
-
723
- /* Remove top margin from first element in table cells */
724
- td > *:first-child,
725
- th > *:first-child {
726
- margin-top: 0 !important;
727
- }
728
-
729
- /* Remove bottom margin from last element in table cells */
730
- td > *:last-child,
731
- th > *:last-child {
732
- margin-bottom: 0 !important;
733
- }
734
-
735
- /* Specifically target common block elements that might be first in cells */
736
- td > h1:first-child,
737
- td > h2:first-child,
738
- td > h3:first-child,
739
- td > h4:first-child,
740
- td > h5:first-child,
741
- td > h6:first-child,
742
- td > p:first-child,
743
- td > ul:first-child,
744
- td > ol:first-child,
745
- td > blockquote:first-child,
746
- td > pre:first-child,
747
- th > h1:first-child,
748
- th > h2:first-child,
749
- th > h3:first-child,
750
- th > h4:first-child,
751
- th > h5:first-child,
752
- th > h6:first-child,
753
- th > p:first-child,
754
- th > ul:first-child,
755
- th > ol:first-child,
756
- th > blockquote:first-child,
757
- th > pre:first-child {
758
- margin-top: 0 !important;
759
- padding-top: 0 !important;
760
691
  }
761
692
 
762
693
  tr:last-child td {
@@ -1011,20 +942,6 @@ tr:hover {
1011
942
  cursor: pointer;
1012
943
  color: var(--color-text-primary);
1013
944
  padding: var(--space-2);
1014
- border-radius: var(--radius-small);
1015
- transition: all var(--duration-fast) var(--easing-out);
1016
- }
1017
-
1018
- .menu-toggle:hover {
1019
- background: var(--color-bg-secondary);
1020
- color: var(--color-text-primary);
1021
- }
1022
-
1023
- /* Show menu toggle on desktop when menu starts closed or is closed */
1024
- @media (min-width: 769px) {
1025
- body.menu-starts-closed .menu-toggle {
1026
- display: block;
1027
- }
1028
945
  }
1029
946
 
1030
947
  /* Responsive Design */
@@ -1037,39 +954,19 @@ tr:hover {
1037
954
 
1038
955
  /* Hide sidebar on mobile */
1039
956
  .sidebar {
1040
- position: fixed;
957
+ position: absolute;
1041
958
  top: calc(var(--header-height) + var(--breadcrumb-height));
1042
959
  left: 0;
1043
960
  height: calc(100vh - var(--header-height) - var(--breadcrumb-height));
1044
- z-index: 1002; /* Above header and floating button */
961
+ z-index: 999;
1045
962
  transform: translateX(-100%);
1046
963
  transition: transform var(--duration-normal) var(--easing-out);
1047
- box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15); /* Add shadow for depth */
1048
964
  }
1049
965
 
1050
966
  .sidebar.open {
1051
967
  transform: translateX(0);
1052
968
  }
1053
969
 
1054
- /* Mobile menu overlay */
1055
- .sidebar-overlay {
1056
- display: none;
1057
- position: fixed;
1058
- top: 0;
1059
- left: 0;
1060
- right: 0;
1061
- bottom: 0;
1062
- background: rgba(0, 0, 0, 0.5);
1063
- z-index: 1001; /* Below sidebar but above content */
1064
- opacity: 0;
1065
- transition: opacity var(--duration-normal);
1066
- }
1067
-
1068
- .sidebar-overlay.active {
1069
- display: block;
1070
- opacity: 1;
1071
- }
1072
-
1073
970
  .main-wrapper {
1074
971
  margin-left: 0;
1075
972
  margin-top: var(--header-height); /* Only account for fixed header on mobile */
@@ -1077,7 +974,7 @@ tr:hover {
1077
974
 
1078
975
  .content {
1079
976
  margin-left: 0;
1080
- padding: var(--space-3) var(--space-4); /* Reduced top/bottom padding on mobile */
977
+ padding: var(--space-6) var(--space-4);
1081
978
  }
1082
979
 
1083
980
  .menu-toggle {
@@ -1091,13 +988,13 @@ tr:hover {
1091
988
  padding: var(--space-4);
1092
989
  border-radius: var(--radius-lg);
1093
990
  overflow-x: auto;
1094
- margin: var(--space-2) 0;
991
+ margin: var(--space-4) 0;
1095
992
  }
1096
993
 
1097
994
  /* Mermaid Full Screen Viewer */
1098
995
  .mermaid-container {
1099
996
  position: relative;
1100
- margin: var(--space-3) 0;
997
+ margin: var(--space-6) 0;
1101
998
  border: 1px solid var(--color-border-default);
1102
999
  border-radius: var(--radius-lg);
1103
1000
  overflow: hidden;
@@ -1159,7 +1056,7 @@ tr:hover {
1159
1056
  }
1160
1057
 
1161
1058
  .mermaid-wrapper {
1162
- padding: var(--space-3);
1059
+ padding: var(--space-6);
1163
1060
  overflow: auto;
1164
1061
  max-height: 600px;
1165
1062
  }
@@ -1681,62 +1578,6 @@ tr:hover {
1681
1578
 
1682
1579
  /* Remove custom positioning variables - tooltips always go right */
1683
1580
 
1684
- /* Floating Menu Button */
1685
- .floating-menu-toggle {
1686
- position: fixed;
1687
- bottom: var(--space-6);
1688
- right: var(--space-6);
1689
- width: 56px;
1690
- height: 56px;
1691
- border-radius: 50%;
1692
- background: var(--color-accent-blue);
1693
- color: white;
1694
- border: none;
1695
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
1696
- display: flex;
1697
- align-items: center;
1698
- justify-content: center;
1699
- font-size: 1.25rem;
1700
- cursor: pointer;
1701
- z-index: 1001; /* Above sidebar */
1702
- opacity: 0;
1703
- transform: scale(0.8) translateY(20px);
1704
- transition: all var(--duration-normal) var(--easing-out);
1705
- -webkit-tap-highlight-color: transparent;
1706
- }
1707
-
1708
- .floating-menu-toggle.visible {
1709
- opacity: 1;
1710
- transform: scale(1) translateY(0);
1711
- }
1712
-
1713
- .floating-menu-toggle:hover {
1714
- transform: scale(1.1) translateY(0);
1715
- box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.15);
1716
- }
1717
-
1718
- .floating-menu-toggle:active {
1719
- transform: scale(0.95) translateY(0);
1720
- }
1721
-
1722
- .floating-menu-toggle i {
1723
- transition: transform var(--duration-fast) var(--easing-out);
1724
- }
1725
-
1726
- .floating-menu-toggle:hover i {
1727
- transform: rotate(90deg);
1728
- }
1729
-
1730
- /* Dark mode styles for floating button */
1731
- .dark-mode .floating-menu-toggle {
1732
- background: var(--color-accent-blue);
1733
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
1734
- }
1735
-
1736
- .dark-mode .floating-menu-toggle:hover {
1737
- box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 0 3px 6px rgba(0, 0, 0, 0.3);
1738
- }
1739
-
1740
1581
  /* Mobile adjustments */
1741
1582
  @media (max-width: 768px) {
1742
1583
  /* Disable tooltips on mobile to prevent overlap issues */
@@ -1755,7 +1596,7 @@ tr:hover {
1755
1596
  /* Sidebar positioning handled in earlier media query */
1756
1597
 
1757
1598
  .content {
1758
- padding: var(--space-3) var(--space-4); /* Consistent reduced padding on mobile */
1599
+ padding: var(--space-4);
1759
1600
  }
1760
1601
 
1761
1602
  .content-inner {
@@ -1768,7 +1609,10 @@ tr:hover {
1768
1609
  padding: 0 var(--space-4);
1769
1610
  }
1770
1611
 
1771
- /* Keep preview banner fixed on mobile */
1612
+ .preview-banner {
1613
+ position: relative;
1614
+ top: 0;
1615
+ }
1772
1616
 
1773
1617
  /* Keep breadcrumbs fixed on mobile to prevent double spacing */
1774
1618
  }
@@ -1983,88 +1827,4 @@ tr:hover {
1983
1827
  background: #451a1a;
1984
1828
  border-color: #7f1d1d;
1985
1829
  color: #fca5a5;
1986
- }
1987
-
1988
- /* Phosphor Icons Alignment */
1989
- .ph {
1990
- display: inline-block;
1991
- vertical-align: middle;
1992
- line-height: 1;
1993
- position: relative;
1994
- top: -0.05em; /* Slight upward adjustment for better baseline alignment */
1995
- }
1996
-
1997
- /* Ensure icons in headings are properly aligned */
1998
- h1 .ph, h2 .ph, h3 .ph, h4 .ph, h5 .ph, h6 .ph {
1999
- font-size: 0.85em; /* Slightly smaller in headings */
2000
- line-height: 1;
2001
- top: -0.05em;
2002
- }
2003
-
2004
- /* Icons in lists need special handling */
2005
- li .ph {
2006
- margin-right: 0.3em;
2007
- font-size: 1.1em;
2008
- line-height: 1;
2009
- vertical-align: middle;
2010
- top: -0.05em;
2011
- }
2012
-
2013
- /* Icons in tables */
2014
- td .ph, th .ph {
2015
- line-height: 1;
2016
- vertical-align: middle;
2017
- top: -0.05em;
2018
- }
2019
-
2020
- /* Icons in navigation */
2021
- .nav-item .ph,
2022
- .nav-title .ph {
2023
- vertical-align: middle;
2024
- line-height: 1;
2025
- top: 0; /* Navigation items are flex, so no adjustment needed */
2026
- }
2027
-
2028
- /* Icon size adjustments for better visual balance */
2029
- .content p .ph {
2030
- font-size: 1.1em; /* Slightly larger than text for visual balance */
2031
- }
2032
-
2033
- /* Special handling for inline code with icons */
2034
- code .ph {
2035
- font-size: 0.9em;
2036
- vertical-align: middle;
2037
- line-height: 1;
2038
- top: 0;
2039
- }
2040
-
2041
- /* Additional fine-tuning for specific contexts */
2042
- .content-inner .ph {
2043
- /* Remove the transform as we're now using consistent vertical-align: middle */
2044
- }
2045
-
2046
- /* ============================================================================
2047
- Private Navigation Visibility
2048
- ============================================================================ */
2049
-
2050
- /* Hide private navigation sections by default */
2051
- .private-nav {
2052
- display: none;
2053
- }
2054
-
2055
- /* Show private navigation when user is authenticated */
2056
- body.authenticated .private-nav {
2057
- display: block;
2058
- }
2059
-
2060
- /* Smooth transition for authentication state changes */
2061
- .nav-section {
2062
- transition: opacity 0.2s ease-in-out;
2063
- }
2064
-
2065
- /* Optional: Add a lock icon to private sections */
2066
- .private-nav .nav-title::after {
2067
- content: ' 🔒';
2068
- font-size: 0.8em;
2069
- opacity: 0.6;
2070
1830
  }
@@ -3,41 +3,14 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <meta name="description" content="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose.">
7
- <title>Documentation Index | @knowcode/doc-builder</title>
8
-
9
- <meta name="author" content="Lindsay Smith">
10
- <meta name="keywords" content="documentation, markdown, static site generator, vercel, notion-style, guide, claude">
11
- <meta name="robots" content="index, follow">
12
- <link rel="canonical" href="https://doc-builder-delta.vercel.app/documentation-index.html">
13
-
14
- <!-- Open Graph / Facebook -->
15
- <meta property="og:type" content="article">
16
- <meta property="og:url" content="https://doc-builder-delta.vercel.app/documentation-index.html">
17
- <meta property="og:title" content="Documentation Index | @knowcode/doc-builder">
18
- <meta property="og:description" content="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose.">
19
- <meta property="og:image" content="https://doc-builder-delta.vercel.app/og-default.png">
20
- <meta property="og:site_name" content="@knowcode/doc-builder">
21
- <meta property="og:locale" content="en_US">
22
-
23
- <!-- Twitter Card -->
24
- <meta name="twitter:card" content="summary_large_image">
25
- <meta name="twitter:site" content="@planbbackups">
26
- <meta name="twitter:creator" content="@planbbackups">
27
- <meta name="twitter:title" content="Documentation Index | @knowcode/doc-builder">
28
- <meta name="twitter:description" content="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose.">
29
- <meta name="twitter:image" content="https://doc-builder-delta.vercel.app/og-default.png">
30
-
31
- <!-- Custom Meta Tags -->
32
- <meta name="google-site-verification" content="FtzcDTf5BQ9K5EfnGazQkgU2U4FiN3ITzM7gHwqUAqQ">
33
- <meta name="msvalidate.01" content="B2D8C4C12C530D47AA962B24CAA09630">
6
+ <meta name="description" content="Beautiful documentation with the least effort possible">
7
+ <title>Documentation Index - @knowcode/doc-builder</title>
34
8
 
35
9
  <!-- Fonts -->
36
10
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
37
11
 
38
12
  <!-- Icons -->
39
13
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
40
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.1/src/regular/style.css">
41
14
 
42
15
  <!-- Mermaid -->
43
16
  <script src="https://cdn.jsdelivr.net/npm/mermaid@10.6.1/dist/mermaid.min.js"></script>
@@ -45,84 +18,8 @@
45
18
  <!-- Styles -->
46
19
  <link rel="stylesheet" href="/css/notion-style.css">
47
20
 
48
-
49
- <!-- Hide content until auth check -->
50
- <style>
51
- body {
52
- visibility: hidden;
53
- opacity: 0;
54
- transition: opacity 0.3s ease;
55
- }
56
- body.authenticated {
57
- visibility: visible;
58
- opacity: 1;
59
- }
60
- /* Show login/logout pages immediately */
61
- body.auth-page {
62
- visibility: visible;
63
- opacity: 1;
64
- }
65
- /* Style auth button consistently */
66
- .auth-btn {
67
- background: none;
68
- border: none;
69
- color: var(--text-secondary);
70
- cursor: pointer;
71
- padding: 0.5rem;
72
- border-radius: 0.5rem;
73
- transition: all 0.2s;
74
- font-size: 1.1rem;
75
- }
76
- .auth-btn:hover {
77
- background: var(--bg-secondary);
78
- color: var(--text-primary);
79
- }
80
- </style>
81
-
82
-
83
21
  <!-- Favicon -->
84
- <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>✨</text></svg>">
85
-
86
- <script type="application/ld+json">
87
- {
88
- "@context": "https://schema.org",
89
- "@type": "TechArticle",
90
- "headline": "Documentation Index",
91
- "description": "This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose.",
92
- "author": {
93
- "@type": "Person",
94
- "name": "Lindsay Smith"
95
- },
96
- "publisher": {
97
- "@type": "Organization",
98
- "name": "Knowcode Ltd",
99
- "url": "https://knowcode.tech"
100
- },
101
- "datePublished": "2025-07-26T16:10:10.581Z",
102
- "dateModified": "2025-07-26T16:10:10.581Z",
103
- "mainEntityOfPage": {
104
- "@type": "WebPage",
105
- "@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
106
- },
107
- "breadcrumb": {
108
- "@type": "BreadcrumbList",
109
- "itemListElement": [
110
- {
111
- "@type": "ListItem",
112
- "position": 1,
113
- "name": "@knowcode/doc-builder",
114
- "item": "https://doc-builder-delta.vercel.app"
115
- },
116
- {
117
- "@type": "ListItem",
118
- "position": 2,
119
- "name": "Documentation Index",
120
- "item": "https://doc-builder-delta.vercel.app/documentation-index.html"
121
- }
122
- ]
123
- }
124
- }
125
- </script>
22
+ <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📚</text></svg>">
126
23
  </head>
127
24
  <body>
128
25
  <!-- Header -->
@@ -132,14 +29,10 @@
132
29
 
133
30
  <div class="header-actions">
134
31
  <div class="deployment-info">
135
- <span class="deployment-date" title="Built with doc-builder v1.8.6">Last updated: Jul 26, 2025, 04:10 PM UTC</span>
32
+ <span class="deployment-date" title="Built with doc-builder v1.4.21">Last updated: Jul 27, 2025, 08:32 AM UTC</span>
136
33
  </div>
137
34
 
138
35
 
139
- <a href="../login.html" class="auth-btn" title="Login/Logout">
140
- <i class="fas fa-sign-in-alt"></i>
141
- </a>
142
-
143
36
 
144
37
  <button id="theme-toggle" class="theme-toggle" aria-label="Toggle theme">
145
38
  <i class="fas fa-moon"></i>
@@ -181,12 +74,13 @@
181
74
  <nav class="navigation">
182
75
 
183
76
  <div class="nav-section" data-level="0">
184
- <a class="nav-title" href="/README.html" >
77
+ <a class="nav-title expanded" href="/README.html" >
185
78
  <i class="fas fa-home"></i> Documentation
186
79
  </a>
187
80
  <div class="nav-content" >
188
81
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
189
82
  <a href="/documentation-index.html" class="nav-item active" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
83
+ <a href="/image-modal-test.html" class="nav-item" data-tooltip="This document tests the new image modal functionality in doc-builder."><i class="fas fa-file-alt"></i> Image Modal Test</a>
190
84
  <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="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
191
85
  <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
192
86
  <div class="nav-section" data-level="1">
@@ -198,6 +92,7 @@
198
92
  <a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase - a secure, scalable authentication platform."><i class="fas fa-file-alt"></i> Authentication Guide</a>
199
93
  <a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="fas fa-file-alt"></i> Claude Workflow Guide</a>
200
94
  <a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
95
+ <a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="fas fa-file-alt"></i> Image Modal Guide</a>
201
96
  <a href="/guides/phosphor-icons-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder automatically converts Unicode emojis in your markdown files to beautiful Phosphor icons in the generated HTML."><i class="fas fa-file-alt"></i> Phosphor Icons Guide</a>
202
97
  <a href="/guides/private-directory-authentication.html" class="nav-item" data-tooltip="The @knowcode/doc-builder provides flexible authentication options to protect your documentation."><i class="fas fa-file-alt"></i> Private Directory Authentication</a>
203
98
  <a href="/guides/public-site-deployment.html" class="nav-item" data-tooltip="The @knowcode/doc-builder now supports deploying public documentation sites without authentication."><i class="fas fa-file-alt"></i> Public Site Deployment</a>
@@ -206,7 +101,7 @@
206
101
  <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
207
102
  <a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a>
208
103
  <a href="/guides/windows-setup-guide.html" class="nav-item" data-tooltip="This guide helps Windows users set up the complete AI-powered documentation workflow using Claude Code, @knowcode/doc-builder, and Vercel."><i class="fas fa-file-alt"></i> Windows Setup Guide</a></div></div>
209
- <div class="nav-section private-nav" data-level="1">
104
+ <div class="nav-section" data-level="1">
210
105
  <a class="nav-title collapsible" href="#" data-target="nav-private-1" >
211
106
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Private
212
107
  </a>
@@ -219,7 +114,7 @@
219
114
  <a href="/private/supabase-auth-setup-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase."><i class="fas fa-file-alt"></i> Supabase Auth Setup Guide</a>
220
115
  <a href="/private/test-private-doc.html" class="nav-item" data-tooltip="Test Private Document."><i class="fas fa-file-alt"></i> Test Private Doc</a>
221
116
  <a href="/private/user-management-tooling.html" class="nav-item" data-tooltip="The user management system is a set of tools designed to manage user access to Supabase-authenticated documentation sites built with."><i class="fas fa-file-alt"></i> User Management Tooling</a></div></div>
222
- <div class="nav-section private-nav" data-level="2">
117
+ <div class="nav-section" data-level="2">
223
118
  <a class="nav-title collapsible" href="/private/launch/README.html" data-target="nav-private-launch-2" >
224
119
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Launch
225
120
  </a>
@@ -230,6 +125,12 @@
230
125
  <a href="/private/launch/go-to-market-strategy.html" class="nav-item" data-tooltip="Go-to-Market Strategy &amp; Product Launch Plan."><i class="fas fa-file-alt"></i> Go To Market Strategy</a>
231
126
  <a href="/private/launch/launch-announcements.html" class="nav-item" data-tooltip="This document contains ready-to-use announcement templates for launching @knowcode/doc-builder across various platforms and channels."><i class="fas fa-file-alt"></i> Launch Announcements</a>
232
127
  <a href="/private/launch/vercel-deployment-auth-setup.html" class="nav-item" data-tooltip="Vercel Deployment Authentication Setup Guide."><i class="fas fa-file-alt"></i> Vercel Deployment Auth Setup</a></div></div>
128
+ <div class="nav-section" data-level="1">
129
+ <a class="nav-title collapsible" href="#" data-target="nav-prompts-1" >
130
+ <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Prompts
131
+ </a>
132
+ <div class="nav-content collapsed" id="nav-prompts-1">
133
+ <a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="fas fa-file-alt"></i> Markdown Document Standards</a></div></div>
233
134
  </nav>
234
135
  <div class="resize-handle"></div>
235
136
  </aside>
@@ -248,13 +149,14 @@
248
149
  └── guides/ # How-to guides and standards
249
150
  ├── authentication-guide.md # Authentication setup and usage
250
151
  ├── documentation-standards.md # Documentation standards
152
+ ├── image-modal-guide.md # Image modal feature guide
251
153
  ├── phosphor-icons-guide.md # Emoji to icon conversion
252
154
  ├── seo-guide.md # SEO features and configuration
253
155
  ├── seo-optimization-guide.md # SEO best practices
254
156
  └── troubleshooting-guide.md # Common issues and solutions
255
157
  </code></pre>
256
158
  <h2>Documentation Categories</h2>
257
- <h3><i class="ph ph-books" aria-label="documentation"></i> Core Documentation</h3>
159
+ <h3>📚 Core Documentation</h3>
258
160
  <table>
259
161
  <thead>
260
162
  <tr>
@@ -279,7 +181,7 @@
279
181
  <td>Claude Code integration guide</td>
280
182
  </tr>
281
183
  </tbody></table>
282
- <h3><i class="ph ph-book-open" aria-label="reading"></i> Guides</h3>
184
+ <h3>📖 Guides</h3>
283
185
  <table>
284
186
  <thead>
285
187
  <tr>
@@ -299,6 +201,11 @@
299
201
  <td>Setting up password protection</td>
300
202
  </tr>
301
203
  <tr>
204
+ <td>Image Modal Guide</td>
205
+ <td><a href="./guides/image-modal-guide.md">guides/image-modal-guide.md</a></td>
206
+ <td>Full-screen image viewing feature</td>
207
+ </tr>
208
+ <tr>
302
209
  <td>SEO Guide</td>
303
210
  <td><a href="./guides/seo-guide.md">guides/seo-guide.md</a></td>
304
211
  <td>SEO features and configuration</td>
@@ -419,17 +326,7 @@ Detailed information...
419
326
  </div>
420
327
 
421
328
  <!-- Scripts -->
422
- <script>
423
- // Pass configuration to frontend
424
- window.docBuilderConfig = {
425
- features: {
426
- showPdfDownload: true,
427
- menuDefaultOpen: false
428
- }
429
- };
430
- </script>
431
329
  <script src="/js/main.js"></script>
432
- <script src="https://unpkg.com/@supabase/supabase-js@2"></script>
433
- <script src="/js/auth.js"></script>
330
+
434
331
  </body>
435
332
  </html>