mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 07:56:16 -04:00
remote_runner: Use newline instead of backslash n
This commit is contained in:
parent
713e57b451
commit
68b041c4fb
2 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,7 @@ $(() => {
|
|||
const append = (text) => {
|
||||
// Indent each line.
|
||||
const lines = text.split('\n').map((line) => ' '.repeat(level * 2) + line);
|
||||
$console.append(document.createTextNode(`${lines.join('\\n')}\\n`));
|
||||
$console.append(document.createTextNode(`${lines.join('\n')}\n`));
|
||||
};
|
||||
|
||||
const total = runner.total;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue