travel/admin/node_modules/posthtml-svg-mode/lib/parser.js

12 lines
259 B
JavaScript
Raw Normal View History

2024-06-24 11:28:18 +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
}));