fix.js 585 B

12345678910111213141516171819202122232425262728
  1. module.exports = function(hljs) {
  2. return {
  3. contains: [
  4. {
  5. begin: /[^\u2401\u0001]+/,
  6. end: /[\u2401\u0001]/,
  7. excludeEnd: true,
  8. returnBegin: true,
  9. returnEnd: false,
  10. contains: [
  11. {
  12. begin: /([^\u2401\u0001=]+)/,
  13. end: /=([^\u2401\u0001=]+)/,
  14. returnEnd: true,
  15. returnBegin: false,
  16. className: 'attr'
  17. },
  18. {
  19. begin: /=/,
  20. end: /([\u2401\u0001])/,
  21. excludeEnd: true,
  22. excludeBegin: true,
  23. className: 'string'
  24. }]
  25. }],
  26. case_insensitive: true
  27. };
  28. };