mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 22:59:31 +08:00
13 lines
356 B
Text
13 lines
356 B
Text
Prism.languages.properties = {
|
|
'comment': /^[ \t]*[#!].*$/m,
|
|
'value': {
|
|
pattern: /(^[ \t]*(?:\\(?:\r\n|[\s\S])|[^\\\s:=])+(?: *[=:] *(?! )| ))(?:\\(?:\r\n|[\s\S])|[^\\\r\n])+/m,
|
|
lookbehind: true,
|
|
alias: 'attr-value'
|
|
},
|
|
'key': {
|
|
pattern: /^[ \t]*(?:\\(?:\r\n|[\s\S])|[^\\\s:=])+(?= *[=:]| )/m,
|
|
alias: 'attr-name'
|
|
},
|
|
'punctuation': /[=:]/
|
|
};
|