jodit
Version:
Jodit is awesome and usefully wysiwyg editor with filebrowser
14 lines (12 loc) • 409 B
text/typescript
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2020 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* Inserts HTML line breaks before all newlines in a string
* @param html
*/
export function nl2br(html: string): string {
return html.replace(/([^>])([\n\r]+)/g, '$1<br/>$2');
}