mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 06:49:29 +08:00
14 lines
309 B
Text
14 lines
309 B
Text
/**
|
|
* Original by Scott Helme.
|
|
*
|
|
* Reference: https://scotthelme.co.uk/hpkp-cheat-sheet/
|
|
*/
|
|
|
|
Prism.languages.hpkp = {
|
|
'directive': {
|
|
pattern: /\b(?:includeSubDomains|max-age|pin-sha256|preload|report-to|report-uri|strict)(?=[\s;=]|$)/i,
|
|
alias: 'property'
|
|
},
|
|
'operator': /=/,
|
|
'punctuation': /;/
|
|
};
|