mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
9 lines
266 B
Plaintext
9 lines
266 B
Plaintext
|
/* 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;
|
||
|
}
|