Live Preview
`; const blob = new Blob([html], { type: 'application/msword' }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = `Room_Rental_Agreement_${tenantName.replace(/\s+/g, '_')}.doc`; link.click(); } // Initialize updatePreview(); calculateCosts();