محرر نصوص متقدم – تحديث

✏️ محرر النصوص الويب المطور

مرحبًا، يمكنك التعديل على هذا النص الآن! جرب التنسيقات الجديدة في شريط الأدوات.

'); printWindow.document.close(); // الطباعة printWindow.print(); }// وظيفة الحفظ كملف نصي (TXT) function saveContent() { // استخدام innerText للحصول على النص فقط (تجاهل التنسيق HTML) const content = document.getElementById('editor').innerText; const blob = new Blob([content], { type: 'text/plain;charset=utf-8' }); // إنشاء رابط تحميل وهمي const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = 'edited_document.txt'; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(a.href); }