Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/helpers/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/helpers/wrap-text-in-paragraph.js

export function wrapTextInParagraph(text: string): string
{
	let result = '';
	const parts = text.split(/((?:\r?\n){2})/);

	for (const part of parts)
	{
		if (part === '\n\n' || part === '\r\n\r\n')
		{
			continue;
		}

		result += `<p>${part.replaceAll(/(\r?\n)/g, '<br>')}</p>`;
	}

	return result;
}