We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7395f5d commit d79bbf9Copy full SHA for d79bbf9
src/languages/systemd.js
@@ -5,11 +5,17 @@ Contributors: Lee Yunjin <[email protected]>
5
Category: common, config
6
Website: https://www.freedesktop.org/
7
*/
8
-
9
export default function(hljs) {
10
const LITERALS = {
11
- className: 'literal',
12
- begin: /=(true|false|Application|Link|Directory|forking|oneshot|OneShot)\b/,
+ begin: /=/,
+ end: /$/,
+ contains: [
13
+ {
14
+ className: 'literal',
15
+ begin: /\b(true|false|Application|Link|Directory|forking|oneshot|OneShot)\b/,
16
+ relevance: 0
17
+ }
18
+ ],
19
relevance: 0
20
};
21
@@ -77,4 +83,3 @@ export default function(hljs) {
77
83
]
78
84
79
85
}
80
0 commit comments