prism-hsts.js 270 B

1234567891011121314
  1. /**
  2. * Original by Scott Helme.
  3. *
  4. * Reference: https://scotthelme.co.uk/hsts-cheat-sheet/
  5. */
  6. Prism.languages.hsts = {
  7. 'directive': {
  8. pattern: /\b(?:includeSubDomains|max-age|preload)(?=[\s;=]|$)/i,
  9. alias: 'property'
  10. },
  11. 'operator': /=/,
  12. 'punctuation': /;/
  13. };