Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgoebel committed Mar 3, 2020
1 parent 7c0b8f6 commit 7ee5d5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/languages/c-like.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function(hljs) {
begin: /(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,
end: /\)([^()\\ ]{0,16})"/,
'after:begin': (m, resp) => { resp.data.heredoc = m[1]; },
'before:end': function(m, resp) { if (resp.data.heredoc !== m[1]) resp.ignoreMatch(); }
'before:end': (m, resp) => { if (resp.data.heredoc !== m[1]) resp.ignoreMatch(); }
}
]
};
Expand Down

0 comments on commit 7ee5d5b

Please sign in to comment.