mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 18:17:29 -05:00
9 lines
266 B
Text
9 lines
266 B
Text
|
/* global Tautologistics */
|
||
|
export default function parseHTML(rawHtml) {
|
||
|
const builder = new Tautologistics.NodeHtmlParser.HtmlBuilder();
|
||
|
const parser = new Tautologistics.NodeHtmlParser.Parser(builder);
|
||
|
|
||
|
parser.parseComplete(rawHtml);
|
||
|
return builder.dom;
|
||
|
}
|