mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 17:39:30 +08:00
14 lines
270 B
Text
14 lines
270 B
Text
/**
|
|
* 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': /;/
|
|
};
|