overleaf/services/web/frontend/js/features/source-editor/utils/node-props.ts
Alf Eaton c0d6a9c5f0 Use noSpellCheckProp NodeProp to exclude node types from spell check (#21335)
GitOrigin-RevId: 91ba72285b0f01c3c00fdb1a64c30e9ff67f72f5
2024-10-28 09:05:16 +00:00

9 lines
538 B
TypeScript

import { NodeProp } from '@lezer/common'
/**
* A node prop that contains an array, each item of which is an array of parent node types that's
* passed to [matchContext](https://lezer.codemirror.net/docs/ref/#common.SyntaxNodeRef.matchContext)
* to test whether the node matches the given context. If so, the text in the node is excluded from spell checking.
* An empty string is treated as a wildcard, so `[['']]` indicates that the node type should always be excluded.
*/
export const noSpellCheckProp = new NodeProp<string[][]>()