dashboard
repositories
filestore
activity
search
login
刘苏义
/
ruoyi-api
forked from
ard/ruoyi-api
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
巡检日历及查询优化
Administrator
2023-08-10
bd3916f68a3f8971bfe8c78b0b71e87fba643e11
[~liusuyi/ruoyi-api.git]
/
ruoyi-ui
/
node_modules
/
posthtml-parser
/
node_modules
/
domutils
/
test
/
utils.js
1
2
3
4
5
6
7
8
9
var htmlparser = require("htmlparser2");
exports.makeDom = function(markup) {
var handler = new htmlparser.DomHandler(),
parser = new htmlparser.Parser(handler);
parser.write(markup);
parser.done();
return handler.dom;
};