Skip to content

Commit

Permalink
Remove unnecessary surroundingPairs and autoClosingPairs
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulyadav-57 committed Apr 12, 2024
1 parent 2037426 commit 0081b20
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/utility/syntaxHighlighter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,12 @@ export async function highlightCodeSnippets(
tact: {
surroundingPairs: [
{ open: '{', close: '}' },
{ open: '[', close: ']' },
{ open: '(', close: ')' },
{ open: '<', close: '>' },
{ open: '"', close: '"' },
],
autoClosingPairs: [
{ open: '{', close: '}' },
{ open: '[', close: ']' },
{ open: '(', close: ')' },
{ open: '<', close: '>' },
{ open: '"', close: '"', notIn: ['string', 'comment'] },
Expand Down

0 comments on commit 0081b20

Please sign in to comment.