const lines = data.split('\n'); // हर पंक्ति को अलग करें
// पहली पंक्ति को हेडर मानें
const headers = lines[0].split('\t'); // टैब से कॉलम अलग करें
// बाकी पंक्तियों को डेटा मानें
if (cells.length > 1 || cells[0].trim() !== '') { // खाली पंक्तियों को छोड़ें
// Add contenteditable="true" to make the table cells editable