mirror of
https://github.com/discourse/discourse.git
synced 2025-03-04 02:09:30 +00:00
7 lines
188 B
Plaintext
7 lines
188 B
Plaintext
|
import { registerUnbound } from "discourse-common/lib/helpers";
|
||
|
import { htmlSafe } from "@ember/template";
|
||
|
|
||
|
registerUnbound("html-safe", function(string) {
|
||
|
return htmlSafe(string);
|
||
|
});
|