Github user mebelousov commented on the issue:
https://github.com/apache/zeppelin/pull/2601
https://github.com/apache/zeppelin/pull/2601
Hi, @BruceXu1991!
As @1ambda, I believe one could remove old button "Download Data as CSV".
The new exporter works fine and conform to RFC-4180 in most cases.
Excel 2013 processes well your case with new CSV exporter.
```
%python
import pandas as pd
data = [['hello', 'moscow', 'i', 'lo"v, "e', 'you']]
df = pd.DataFrame(data)
print('%table ' + df.to_csv(sep='\t', index=False))
```
This code gives the next result:

---