Composer: Fix double new lines in Safari (#1333)
This commit is contained in:
parent
313c3ea5d8
commit
d2a790fb06
@ -67,6 +67,8 @@ function parseMarkdown(html: string) {
|
|||||||
// Strip redundant nbsp's
|
// Strip redundant nbsp's
|
||||||
parsedHtml = parsedHtml.replace(/ /g, ' ');
|
parsedHtml = parsedHtml.replace(/ /g, ' ');
|
||||||
|
|
||||||
|
// Replace <div><br></div> with newline (new line in Safari)
|
||||||
|
parsedHtml = parsedHtml.replace(/<div><br([^>]*)?><\/div>/g, '\n');
|
||||||
// Replace <br> with newline
|
// Replace <br> with newline
|
||||||
parsedHtml = parsedHtml.replace(/<br([^>]*)?>/g, '\n');
|
parsedHtml = parsedHtml.replace(/<br([^>]*)?>/g, '\n');
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user