7 lines
205 B
JavaScript
Raw Normal View History

2018-06-15 17:03:24 +02:00
import { escapeExpression } from "discourse/lib/utilities";
import { htmlHelper } from "discourse-common/lib/helpers";
export default htmlHelper((str) =>
escapeExpression(str).replace(/\n/g, "<br>")
);