source: node_modules/prismjs/components/prism-hpkp.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 309 bytes
Line 
1/**
2 * Original by Scott Helme.
3 *
4 * Reference: https://scotthelme.co.uk/hpkp-cheat-sheet/
5 */
6
7Prism.languages.hpkp = {
8 'directive': {
9 pattern: /\b(?:includeSubDomains|max-age|pin-sha256|preload|report-to|report-uri|strict)(?=[\s;=]|$)/i,
10 alias: 'property'
11 },
12 'operator': /=/,
13 'punctuation': /;/
14};
Note: See TracBrowser for help on using the repository browser.