From 72015ff7ad815f919ebcf7aca736fa618524ec8e Mon Sep 17 00:00:00 2001 From: Tilman Date: Mon, 26 Jun 2023 13:33:57 +0200 Subject: [PATCH] commit --- index.twig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/index.twig b/index.twig index 76eeee5..d6bb4ba 100644 --- a/index.twig +++ b/index.twig @@ -258,7 +258,10 @@ for(var i = 0;i < lines.length;i++){ var podcastInfo = lines[i].split(';'); const podcastTitle = document.createTextNode(lines[i]); - podcastDiv.appendChild('

' + podcastInfo[0] + '

'); + + const node = document.createElement("p"); + node.appendChild(podcastTitle); + podcastDiv.appendChild(node); } });