RosettaCodeData/Task/CSV-to-HTML-translation/JavaScript/csv-to-html-translation-5.js

15 lines
432 B
JavaScript

const inputData = `Character,Speech
The multitude,The messiah! Show us the messiah!
Brians mother,<angry>Now you listen here! He's not the messiah; he's a very naughty boy! Now go away!</angry>
The multitude,Who are you?
Brians mother,I'm his mother; that's who!
The multitude,Behold his mother! Behold his mother!`;
try {
document.body.append(
csvToHtml(inputData),
);
} catch (error) {
console.error(error)
}