Files
tekelanew_acs/acs/nladmin-ui/node_modules/posthtml-svg-mode/lib/parser.js

12 lines
259 B
JavaScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
const createParser = require('posthtml-parser');
/**
* @see https://github.com/fb55/htmlparser2/wiki/Parser-options
*/
module.exports = createParser(({
xmlMode: true,
lowerCaseTags: false,
decodeEntities: false,
lowerCaseAttributeNames: false
}));