This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/app/assets/javascripts/discourse-common/addon/helpers/html-safe.js
T
2020-09-04 13:42:47 +02:00

7 lines
189 B
JavaScript

import { registerUnbound } from "discourse-common/lib/helpers";
import { htmlSafe } from "@ember/template";
registerUnbound("html-safe", function (string) {
return htmlSafe(string);
});