CS-Notes/docs/_style/prism-master/components/prism-hsts.js

20 lines
333 B
JavaScript
Raw Normal View History

2018-12-19 14:09:39 +08:00
/**
* Original by Scott Helme.
*
* Reference: https://scotthelme.co.uk/hsts-cheat-sheet/
*/
Prism.languages.hsts = {
'directive': {
pattern: /\b(?:max-age=|includeSubDomains|preload)/,
alias: 'keyword'
},
'safe': {
pattern: /\d{8,}/,
alias: 'selector'
},
'unsafe': {
pattern: /\d{0,7}/,
alias: 'function'
}
};