blob: 93bfe10e56e1f95823a1c4d8f53f13b0486584ac (
plain)
1
2
3
4
5
6
7
8
9
|
Prism.languages.hpkp = {
directive: {
pattern:
/\b(?:includeSubDomains|max-age|pin-sha256|preload|report-to|report-uri|strict)(?=[\s;=]|$)/i,
alias: 'property',
},
operator: /=/,
punctuation: /;/,
};
|