mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 21:00:23 +08:00
6 lines
164 B
JavaScript
6 lines
164 B
JavaScript
export function stringToHTML(string) {
|
|
const parser = new DOMParser();
|
|
const doc = parser.parseFromString(string, "text/html");
|
|
return doc.body.firstChild;
|
|
}
|