Can I display texted formeted as html in CSV Dowoloader

I have reports that users can download into a .csv file but a few of the fields have html formatting from a WYSIWYG editor. Is there a way to display the html in the field in the .csv field?

Here is my ExportReport.jsx fild:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import CsvDownloader from "react-csv-downloader";
import moment from "moment";
const ExportReport = ({ reports }) => {
let columns = [];
let datas = [];
if (reports) {
columns = [
{
id: "matchType",
displayName: "Match Type",
},
{
id: "eventName",
displayName: "Event Name",
},
{
id: "matchDate",
displayName: "Match Date",
},
{
id: "opponentName",
displayName: "Opponent Name",
},
{
id: "weightCategory",
displayName: "Weight Category",
},
{
id: "club",
displayName: "Club",
},
{
id: "country",
displayName: "Country",
},
{
id: "rank",
displayName: "Rank",
},
{
id: "grip",
displayName: "Grip",
},
{
id: "opponentAttacks",
displayName: "Opponent Attacks",
},
{
id: "attackNotes",
displayName: "Opponent Attack Notes",
},
{
id: "myAttacks",
displayName: "My Attacks",
},
{
id: "My Attack Notes",
displayName: "My Attack Notes",
},
{
id: "result",
displayName: "Result",
},
{
id: "score",
displayName: "score",
},
{
id: "videoURL",
displayName: "Video URL",
},
];
let opponentAttacks = "";
let athleteAttacks = "";
reports.map((report) => {
report.opponentAttacks.map((attack) => {
opponentAttacks += attack + " ";
});
report.athleteAttacks.map((attack) => {
athleteAttacks += attack + " ";
});
datas.push({
matchType: report.matchType,
eventName: report.eventName,
matchDate: moment(report.matchDate).format("MM/DD/YYYY"),
//endtDate: report.eventEndDate,
opponentName: report.opponentName,
weightCategory: report.weightCategory,
club: report.club,
country: report.country,
rank: report.rank,
grip: report.grip,
opponentAttacks: opponentAttacks,
attackNotes: report.opponentAttackNotes,
myAttacks: athleteAttacks,
myAttachNotes: report.athleteAttackNotes,
result: report.result,
scor: report.scor,
videoURL: report.videoURL,
});
});
}
return (
<CsvDownloader
filename="matchReport"
extension=".csv"
separator=","
//wrapColumnChar="'"
columns={columns}
datas={datas}
text="Download Reports"
className="profile_btn"
/>
);
};
export default ExportReport;
</code>
<code>import CsvDownloader from "react-csv-downloader"; import moment from "moment"; const ExportReport = ({ reports }) => { let columns = []; let datas = []; if (reports) { columns = [ { id: "matchType", displayName: "Match Type", }, { id: "eventName", displayName: "Event Name", }, { id: "matchDate", displayName: "Match Date", }, { id: "opponentName", displayName: "Opponent Name", }, { id: "weightCategory", displayName: "Weight Category", }, { id: "club", displayName: "Club", }, { id: "country", displayName: "Country", }, { id: "rank", displayName: "Rank", }, { id: "grip", displayName: "Grip", }, { id: "opponentAttacks", displayName: "Opponent Attacks", }, { id: "attackNotes", displayName: "Opponent Attack Notes", }, { id: "myAttacks", displayName: "My Attacks", }, { id: "My Attack Notes", displayName: "My Attack Notes", }, { id: "result", displayName: "Result", }, { id: "score", displayName: "score", }, { id: "videoURL", displayName: "Video URL", }, ]; let opponentAttacks = ""; let athleteAttacks = ""; reports.map((report) => { report.opponentAttacks.map((attack) => { opponentAttacks += attack + " "; }); report.athleteAttacks.map((attack) => { athleteAttacks += attack + " "; }); datas.push({ matchType: report.matchType, eventName: report.eventName, matchDate: moment(report.matchDate).format("MM/DD/YYYY"), //endtDate: report.eventEndDate, opponentName: report.opponentName, weightCategory: report.weightCategory, club: report.club, country: report.country, rank: report.rank, grip: report.grip, opponentAttacks: opponentAttacks, attackNotes: report.opponentAttackNotes, myAttacks: athleteAttacks, myAttachNotes: report.athleteAttackNotes, result: report.result, scor: report.scor, videoURL: report.videoURL, }); }); } return ( <CsvDownloader filename="matchReport" extension=".csv" separator="," //wrapColumnChar="'" columns={columns} datas={datas} text="Download Reports" className="profile_btn" /> ); }; export default ExportReport; </code>
import CsvDownloader from "react-csv-downloader";
import moment from "moment";

const ExportReport = ({ reports }) => {
  let columns = [];
  let datas = [];

  if (reports) {
    columns = [
      {
        id: "matchType",
        displayName: "Match Type",
      },
      {
        id: "eventName",
        displayName: "Event Name",
      },
      {
        id: "matchDate",
        displayName: "Match Date",
      },
      {
        id: "opponentName",
        displayName: "Opponent Name",
      },
      {
        id: "weightCategory",
        displayName: "Weight Category",
      },
      {
        id: "club",
        displayName: "Club",
      },
      {
        id: "country",
        displayName: "Country",
      },
      {
        id: "rank",
        displayName: "Rank",
      },
      {
        id: "grip",
        displayName: "Grip",
      },
      {
        id: "opponentAttacks",
        displayName: "Opponent Attacks",
      },
      {
        id: "attackNotes",
        displayName: "Opponent Attack Notes",
      },
      {
        id: "myAttacks",
        displayName: "My Attacks",
      },
      {
        id: "My Attack Notes",
        displayName: "My Attack Notes",
      },
      {
        id: "result",
        displayName: "Result",
      },
      {
        id: "score",
        displayName: "score",
      },
      {
        id: "videoURL",
        displayName: "Video URL",
      },
    ];

    let opponentAttacks = "";
    let athleteAttacks = "";

    reports.map((report) => {
      report.opponentAttacks.map((attack) => {
        opponentAttacks += attack + " ";
      });
      report.athleteAttacks.map((attack) => {
        athleteAttacks += attack + " ";
      });
      datas.push({
        matchType: report.matchType,
        eventName: report.eventName,
        matchDate: moment(report.matchDate).format("MM/DD/YYYY"),
        //endtDate: report.eventEndDate,
        opponentName: report.opponentName,
        weightCategory: report.weightCategory,
        club: report.club,
        country: report.country,
        rank: report.rank,
        grip: report.grip,
        opponentAttacks: opponentAttacks,
        attackNotes: report.opponentAttackNotes,
        myAttacks: athleteAttacks,
        myAttachNotes: report.athleteAttackNotes,
        result: report.result,
        scor: report.scor,
        videoURL: report.videoURL,
      });
    });
  }
  return (
    <CsvDownloader
      filename="matchReport"
      extension=".csv"
      separator=","
      //wrapColumnChar="'"
      columns={columns}
      datas={datas}
      text="Download Reports"
      className="profile_btn"
    />
  );
};

export default ExportReport;

The report.athleteAttackNotes and report.opponentAttackNotes have html formatting and I would like that to display as formatted in the .csv file if possible.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật