Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgoebel committed Dec 26, 2019
1 parent 3cb40ae commit 6aac309
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions src/languages/ini.js
Expand Up @@ -35,17 +35,10 @@ function(hljs) {
className: "string",
contains: [hljs.BACKSLASH_ESCAPE],
variants: [
{
begin: "'''", end: "'''",
relevance: 10
}, {
begin: '"""', end: '"""',
relevance: 10
}, {
begin: '"', end: '"'
}, {
begin: "'", end: "'"
}
{ begin: "'''", end: "'''", relevance: 10 },
{ begin: '"""', end: '"""', relevance: 10 },
{ begin: '"', end: '"' },
{ begin: "'", end: "'" }
]
};
var ARRAY = {
Expand Down

0 comments on commit 6aac309

Please sign in to comment.