Files
est-frame/node_modules/prismjs/components/prism-hsts.js
2025-10-22 05:38:27 +00:00

15 lines
270 B
JavaScript
Executable File

/**
* Original by Scott Helme.
*
* Reference: https://scotthelme.co.uk/hsts-cheat-sheet/
*/
Prism.languages.hsts = {
'directive': {
pattern: /\b(?:includeSubDomains|max-age|preload)(?=[\s;=]|$)/i,
alias: 'property'
},
'operator': /=/,
'punctuation': /;/
};