mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00
9 lines
538 B
TypeScript
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[][]>()
|