mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
7 lines
188 B
Text
7 lines
188 B
Text
|
import { registerUnbound } from "discourse-common/lib/helpers";
|
||
|
import { htmlSafe } from "@ember/template";
|
||
|
|
||
|
registerUnbound("html-safe", function(string) {
|
||
|
return htmlSafe(string);
|
||
|
});
|