diff options
author | Chocobozzz <me@florianbigard.com> | 2021-10-11 14:15:42 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-10-11 14:15:42 +0200 |
commit | 4d6952361e5b2d35513036ab5e79da5bcb5bfe81 (patch) | |
tree | 2b62647df1434bff9b5cac521c0f32eb60e6c7f2 /server | |
parent | ab632f438efed53e3ed4ba08dd73cc666366af2b (diff) | |
download | PeerTube-4d6952361e5b2d35513036ab5e79da5bcb5bfe81.tar.gz PeerTube-4d6952361e5b2d35513036ab5e79da5bcb5bfe81.tar.zst PeerTube-4d6952361e5b2d35513036ab5e79da5bcb5bfe81.zip |
Fix multiple \n in md to plain text
Diffstat (limited to 'server')
-rw-r--r-- | server/helpers/markdown.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/markdown.ts b/server/helpers/markdown.ts index 41e57d857..ebf479b98 100644 --- a/server/helpers/markdown.ts +++ b/server/helpers/markdown.ts | |||
@@ -34,7 +34,7 @@ const mdToPlainText = text => { | |||
34 | 34 | ||
35 | return safeHtml.replace(/<[^>]+>/g, '') | 35 | return safeHtml.replace(/<[^>]+>/g, '') |
36 | .replace(/\n$/, '') | 36 | .replace(/\n$/, '') |
37 | .replace('\n', ', ') | 37 | .replace(/\n/g, ', ') |
38 | } | 38 | } |
39 | 39 | ||
40 | // --------------------------------------------------------------------------- | 40 | // --------------------------------------------------------------------------- |