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 ebb78fa commit d662a2cCopy full SHA for d662a2c
src/languages/pgsql.js
@@ -463,9 +463,9 @@ export default function(hljs) {
463
contains: [{begin: '\\\\.'}],
464
relevance: 10
465
},
466
- {
+ hljs.END_SAME_AS_BEGIN({
467
begin: DOLLAR_STRING,
468
- endSameAsBegin: true,
+ end: DOLLAR_STRING,
469
contains: [
470
{
471
// actually we want them all except SQL; listed are those with known implementations
@@ -474,7 +474,7 @@ export default function(hljs) {
474
endsWithParent: true
475
}
476
]
477
- },
+ }),
478
// identifiers in quotes
479
480
begin: '"', end: '"',
0 commit comments