본문으로 바로가기
var text = '내용';
text = text.split(' ').join(' '); //replaceAll() 함수 효과
text = text.replace(/(\r\n|\n|\n\n)/gi, '<br />');

return text;