theWitcher commited on
Commit
f1454b1
·
1 Parent(s): 0a563e9

add speak to description

Browse files
Files changed (1) hide show
  1. index.html +3 -2
index.html CHANGED
@@ -744,8 +744,9 @@ https://chatgpt.com/c/67efa5ae-ab80-8005-a7d4-de3ced6ccec4
744
  toolCard.className = `relative tool-card bg-white rounded-lg shadow-sm border border-gray-100 p-6 transition duration-300 ${tool.isFeatured ? 'ring-2 ring-blue-500' : ''}`;
745
 
746
  // הכנת הטקסט להקראה - שילוב של שם הכלי והתיאור שלו
747
- const speakableText = `${tool.name}`;
748
- // `${tool.name}. ${tool.description}`;
 
749
 
750
  toolCard.innerHTML = `
751
  <div class="flex items-start mb-4">
 
744
  toolCard.className = `relative tool-card bg-white rounded-lg shadow-sm border border-gray-100 p-6 transition duration-300 ${tool.isFeatured ? 'ring-2 ring-blue-500' : ''}`;
745
 
746
  // הכנת הטקסט להקראה - שילוב של שם הכלי והתיאור שלו
747
+ const speakableText = `${tool.name}. ${tool.description}`;
748
+ // `${tool.name}`;
749
+ //
750
 
751
  toolCard.innerHTML = `
752
  <div class="flex items-start mb-4">