parser.js 259 B

1234567891011
  1. const createParser = require('posthtml-parser');
  2. /**
  3. * @see https://github.com/fb55/htmlparser2/wiki/Parser-options
  4. */
  5. module.exports = createParser(({
  6. xmlMode: true,
  7. lowerCaseTags: false,
  8. decodeEntities: false,
  9. lowerCaseAttributeNames: false
  10. }));