@knowcode/doc-builder 1.9.0 → 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.
- package/README.md +2 -0
- package/html/README.html +34 -149
- package/html/css/notion-style.css +13 -394
- package/html/documentation-index.html +17 -127
- package/html/guides/authentication-default-change.html +8 -130
- package/html/guides/authentication-guide.html +20 -141
- package/html/guides/claude-workflow-guide.html +23 -137
- package/html/guides/documentation-standards.html +12 -133
- package/html/guides/image-modal-guide.html +381 -0
- package/html/guides/phosphor-icons-guide.html +28 -150
- package/html/guides/private-directory-authentication.html +8 -130
- package/html/guides/public-site-deployment.html +8 -130
- package/html/guides/search-engine-verification-guide.html +8 -130
- package/html/guides/seo-guide.html +8 -130
- package/html/guides/seo-optimization-guide.html +39 -159
- package/html/guides/troubleshooting-guide.html +20 -141
- package/html/guides/windows-setup-guide.html +39 -161
- package/html/image-modal-test.html +9 -125
- package/html/index.html +34 -149
- package/html/js/auth.js +39 -118
- package/html/js/main.js +25 -259
- package/html/private/cache-control-anti-pattern.html +13 -135
- package/html/private/launch/README.html +16 -144
- package/html/private/launch/auth-cleanup-summary.html +25 -153
- package/html/private/launch/bubble-plugin-specification.html +8 -136
- package/html/private/launch/go-to-market-strategy.html +10 -138
- package/html/private/launch/launch-announcements.html +24 -151
- package/html/private/launch/vercel-deployment-auth-setup.html +10 -138
- package/html/private/next-steps-walkthrough.html +15 -137
- package/html/private/supabase-auth-implementation-completed.html +22 -143
- package/html/private/supabase-auth-implementation-plan.html +15 -136
- package/html/private/supabase-auth-integration-plan.html +22 -142
- package/html/private/supabase-auth-setup-guide.html +17 -139
- package/html/private/test-private-doc.html +8 -130
- package/html/private/user-management-tooling.html +8 -130
- package/html/prompts/markdown-document-standards.html +13 -134
- package/html/vercel-cli-setup-guide.html +12 -128
- package/html/vercel-first-time-setup-guide.html +9 -125
- package/lib/emoji-mapper.js +12 -0
- package/package.json +1 -1
package/lib/emoji-mapper.js
CHANGED
|
@@ -235,6 +235,18 @@ const emojiToPhosphor = {
|
|
|
235
235
|
'👑': '<i class="ph ph-crown" aria-label="crown"></i>',
|
|
236
236
|
'🔢': '<i class="ph ph-hash" aria-label="numbers"></i>',
|
|
237
237
|
'🎓': '<i class="ph ph-graduation-cap" aria-label="graduation"></i>',
|
|
238
|
+
'🏔️': '<i class="ph ph-mountains" aria-label="mountain"></i>',
|
|
239
|
+
'🏞️': '<i class="ph ph-park" aria-label="nature"></i>',
|
|
240
|
+
'🌅': '<i class="ph ph-sunrise" aria-label="sunrise"></i>',
|
|
241
|
+
'♿': '<i class="ph ph-wheelchair" aria-label="accessibility"></i>',
|
|
242
|
+
'🌓': '<i class="ph ph-moon-stars" aria-label="half moon"></i>',
|
|
243
|
+
'🃏': '<i class="ph ph-cards" aria-label="joker card"></i>',
|
|
244
|
+
'🧩': '<i class="ph ph-puzzle-piece" aria-label="puzzle"></i>',
|
|
245
|
+
'⏳': '<i class="ph ph-hourglass" aria-label="hourglass"></i>',
|
|
246
|
+
'👆': '<i class="ph ph-hand-point-up" aria-label="point up"></i>',
|
|
247
|
+
'📑': '<i class="ph ph-file-text" aria-label="document"></i>',
|
|
248
|
+
'💀': '<i class="ph ph-skull" aria-label="skull"></i>',
|
|
249
|
+
'🔤': '<i class="ph ph-textbox" aria-label="letters"></i>',
|
|
238
250
|
};
|
|
239
251
|
|
|
240
252
|
/**
|