diff --git a/static/js/script.js b/static/js/script.js
index faa08f1..134da1f 100644
--- a/static/js/script.js
+++ b/static/js/script.js
@@ -163,7 +163,7 @@ document.addEventListener('DOMContentLoaded', function() {
} else if (currentChar === '\t') {
highlightedText += '→';
} else if (currentChar === '\n') {
- highlightedText += '↵';
+ highlightedText += '↵
';
} else {
highlightedText += `${currentChar}`;
}
@@ -174,7 +174,7 @@ document.addEventListener('DOMContentLoaded', function() {
} else if (currentChar === '\t') {
highlightedText += '→';
} else if (currentChar === '\n') {
- highlightedText += '↵';
+ highlightedText += '↵
';
} else {
highlightedText += `${currentChar}`;
}
@@ -186,7 +186,7 @@ document.addEventListener('DOMContentLoaded', function() {
} else if (currentChar === '\t') {
highlightedText += '→';
} else if (currentChar === '\n') {
- highlightedText += '↵';
+ highlightedText += '↵
';
} else {
highlightedText += currentChar;
}
diff --git a/templates/index.html b/templates/index.html
index a74fa9a..d8bbcd1 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -19,7 +19,7 @@