@knowcode/doc-builder 1.9.13 → 1.9.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/css/notion-style.css +37 -0
- package/doc-builder.config.js +10 -2
- package/doc-builder.config.js.backup.1754059241330 +115 -0
- package/html/README.html +8 -15
- package/html/about-doc-builder.html +478 -0
- package/html/css/notion-style.css +102 -1
- package/html/documentation-index.html +8 -15
- package/html/guides/authentication-default-change.html +8 -15
- package/html/guides/authentication-guide.html +8 -15
- package/html/guides/claude-workflow-guide.html +8 -15
- package/html/guides/configuration-guide.html +8 -15
- package/html/guides/documentation-standards.html +8 -15
- package/html/guides/html-embedding-guide.html +8 -15
- package/html/guides/image-modal-guide.html +8 -15
- package/html/guides/phosphor-icons-guide.html +8 -15
- package/html/guides/private-directory-authentication-troubleshooting.html +8 -15
- package/html/guides/private-directory-authentication.html +8 -15
- package/html/guides/public-site-deployment.html +8 -15
- package/html/guides/search-engine-verification-guide.html +8 -15
- package/html/guides/seo-guide.html +8 -15
- package/html/guides/seo-optimization-guide.html +8 -15
- package/html/guides/supabase-authentication-complete-guide.html +8 -15
- package/html/guides/troubleshooting-guide.html +8 -15
- package/html/guides/windows-setup-guide.html +8 -15
- package/html/image-modal-test.html +8 -15
- package/html/index.html +8 -15
- package/html/private/cache-control-anti-pattern.html +8 -15
- package/html/private/launch/README.html +8 -15
- package/html/private/launch/auth-cleanup-summary.html +8 -15
- package/html/private/launch/bubble-plugin-specification.html +8 -15
- package/html/private/launch/go-to-market-strategy.html +8 -15
- package/html/private/launch/launch-announcements.html +8 -15
- package/html/private/launch/vercel-deployment-auth-setup.html +8 -15
- package/html/private/next-steps-walkthrough.html +8 -15
- package/html/private/supabase-auth-implementation-completed.html +8 -15
- package/html/private/supabase-auth-implementation-plan.html +8 -15
- package/html/private/supabase-auth-integration-plan.html +8 -15
- package/html/private/supabase-auth-setup-guide.html +8 -15
- package/html/private/test-private-doc.html +8 -15
- package/html/private/user-management-tooling.html +8 -15
- package/html/prompts/beautiful-documentation-design.html +8 -15
- package/html/prompts/markdown-document-standards.html +8 -15
- package/html/prompts/project-rename-strategy-sasha-publish.html +517 -0
- package/html/sitemap.xml +66 -54
- package/html/vercel-cli-setup-guide.html +8 -15
- package/html/vercel-first-time-setup-guide.html +8 -15
- package/lib/config.js +25 -2
- package/lib/core-builder.js +8 -4
- package/lib/emoji-mapper.js +10 -0
- package/package.json +1 -1
package/lib/emoji-mapper.js
CHANGED
|
@@ -63,10 +63,13 @@ const emojiToPhosphor = {
|
|
|
63
63
|
'🖍️': '<i class="ph ph-pencil" aria-label="draw"></i>',
|
|
64
64
|
'✏️': '<i class="ph ph-pencil-simple" aria-label="edit"></i>',
|
|
65
65
|
'✒️': '<i class="ph ph-pen" aria-label="write"></i>',
|
|
66
|
+
'✍️': '<i class="ph ph-hand-waving" aria-label="writing"></i>',
|
|
66
67
|
'🖊️': '<i class="ph ph-pen-nib" aria-label="pen"></i>',
|
|
67
68
|
'🖋️': '<i class="ph ph-pen-nib-straight" aria-label="fountain pen"></i>',
|
|
68
69
|
'🏷️': '<i class="ph ph-tag" aria-label="tag"></i>',
|
|
69
70
|
'👁️': '<i class="ph ph-eye" aria-label="view"></i>',
|
|
71
|
+
'🔵': '<i class="ph ph-circle" aria-label="blue circle"></i>',
|
|
72
|
+
'🟦': '<i class="ph ph-square" aria-label="blue square"></i>',
|
|
70
73
|
'📐': '<i class="ph ph-ruler" aria-label="measure"></i>',
|
|
71
74
|
'📏': '<i class="ph ph-ruler" aria-label="ruler"></i>',
|
|
72
75
|
|
|
@@ -88,6 +91,7 @@ const emojiToPhosphor = {
|
|
|
88
91
|
// Communication
|
|
89
92
|
'📧': '<i class="ph ph-envelope" aria-label="email"></i>',
|
|
90
93
|
'📨': '<i class="ph ph-envelope-open" aria-label="inbox"></i>',
|
|
94
|
+
'📥': '<i class="ph ph-tray-arrow-down" aria-label="inbox"></i>',
|
|
91
95
|
'📤': '<i class="ph ph-tray-arrow-up" aria-label="outbox"></i>',
|
|
92
96
|
'📬': '<i class="ph ph-mailbox" aria-label="mailbox"></i>',
|
|
93
97
|
'📮': '<i class="ph ph-mailbox" aria-label="postbox"></i>',
|
|
@@ -134,6 +138,7 @@ const emojiToPhosphor = {
|
|
|
134
138
|
'📽️': '<i class="ph ph-film-slate" aria-label="production"></i>',
|
|
135
139
|
'🎬': '<i class="ph ph-film-slate" aria-label="action"></i>',
|
|
136
140
|
'🎤': '<i class="ph ph-microphone" aria-label="microphone"></i>',
|
|
141
|
+
'🎙️': '<i class="ph ph-microphone-stage" aria-label="studio microphone"></i>',
|
|
137
142
|
'🎧': '<i class="ph ph-headphones" aria-label="audio"></i>',
|
|
138
143
|
'🎵': '<i class="ph ph-music-note" aria-label="music"></i>',
|
|
139
144
|
'🎶': '<i class="ph ph-music-notes" aria-label="music"></i>',
|
|
@@ -145,6 +150,8 @@ const emojiToPhosphor = {
|
|
|
145
150
|
'☀️': '<i class="ph ph-sun" aria-label="sunny"></i>',
|
|
146
151
|
'🌙': '<i class="ph ph-moon" aria-label="night"></i>',
|
|
147
152
|
'⭐': '<i class="ph ph-star" aria-label="star"></i>',
|
|
153
|
+
'🐧': '<i class="ph ph-penguin" aria-label="penguin"></i>',
|
|
154
|
+
'🐳': '<i class="ph ph-whale" aria-label="whale"></i>',
|
|
148
155
|
'🌟': '<i class="ph ph-star-four" aria-label="sparkle"></i>',
|
|
149
156
|
'✨': '<i class="ph ph-sparkle" aria-label="special"></i>',
|
|
150
157
|
'☁️': '<i class="ph ph-cloud" aria-label="cloud"></i>',
|
|
@@ -167,11 +174,13 @@ const emojiToPhosphor = {
|
|
|
167
174
|
'🙌': '<i class="ph ph-hands-clapping" aria-label="celebrate"></i>',
|
|
168
175
|
'💪': '<i class="ph ph-hand-fist" aria-label="strong"></i>',
|
|
169
176
|
'💼': '<i class="ph ph-briefcase" aria-label="business"></i>',
|
|
177
|
+
'👔': '<i class="ph ph-necktie" aria-label="formal wear"></i>',
|
|
170
178
|
'🧠': '<i class="ph ph-brain" aria-label="thinking"></i>',
|
|
171
179
|
|
|
172
180
|
// Objects & Things
|
|
173
181
|
'🏠': '<i class="ph ph-house" aria-label="home"></i>',
|
|
174
182
|
'🏢': '<i class="ph ph-buildings" aria-label="office"></i>',
|
|
183
|
+
'🏰': '<i class="ph ph-castle-turret" aria-label="castle"></i>',
|
|
175
184
|
'🏭': '<i class="ph ph-factory" aria-label="factory"></i>',
|
|
176
185
|
'🚗': '<i class="ph ph-car" aria-label="car"></i>',
|
|
177
186
|
'🚌': '<i class="ph ph-bus" aria-label="bus"></i>',
|
|
@@ -185,6 +194,7 @@ const emojiToPhosphor = {
|
|
|
185
194
|
'🥇': '<i class="ph ph-medal" aria-label="first place"></i>',
|
|
186
195
|
'🎮': '<i class="ph ph-game-controller" aria-label="gaming"></i>',
|
|
187
196
|
'🎲': '<i class="ph ph-dice-five" aria-label="random"></i>',
|
|
197
|
+
'🎴': '<i class="ph ph-cards" aria-label="flower cards"></i>',
|
|
188
198
|
|
|
189
199
|
// Food & Drink
|
|
190
200
|
'☕': '<i class="ph ph-coffee" aria-label="coffee"></i>',
|