mirror of
https://github.com/CyC2018/CS-Notes.git
synced 2025-07-06 09:01:32 +08:00
11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
Prism.languages.ini= {
|
|
'comment': /^[ \t]*;.*$/m,
|
|
'selector': /^[ \t]*\[.*?\]/m,
|
|
'constant': /^[ \t]*[^\s=]+?(?=[ \t]*=)/m,
|
|
'attr-value': {
|
|
pattern: /=.*/,
|
|
inside: {
|
|
'punctuation': /^[=]/
|
|
}
|
|
}
|
|
}; |