Constant tree_sitter_dot::HIGHLIGHTS_QUERY[][src]

pub const HIGHLIGHTS_QUERY: &'static str = "(keyword) @keyword\n(string_literal) @string\n(number_literal) @number\n\n[\n  (edgeop)\n  (operator)\n] @operator\n\n[\n  \",\"\n  \";\"\n] @punctuation.delimiter\n\n[\n  \"{\"\n  \"}\"\n  \"[\"\n  \"]\"\n  \"<\"\n  \">\"\n] @punctuation.bracket\n\n(subgraph\n  id: (id\n    (identifier) @namespace)\n)\n\n(attribute\n  name: (id\n    (identifier) @type)\n)\n\n(attribute\n  value: (id\n    (identifier) @constant)\n)\n\n[\n(comment)\n(preproc)\n] @comment\n\n(ERROR) @error\n\n(identifier) @variable\n";