0f28849b3d0597f7d34f1aa7c68939f142fd818f4a9d9a12890b86e2512722f77bb645c4f0f162d852e3b6305ce2e495b122634dfed37a8ace004a2ad5d80d 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. }));