Variable: markdown-ts--fill-unfillable-block-query

markdown-ts--fill-unfillable-block-query is a variable defined in markdown-ts-mode.el.gz.

Value

([(fenced_code_block) (indented_code_block) (pipe_table)] @block)

Documentation

Tree-sitter query matching blocks where filling is inhibited.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
;;; Filling:

;; TODO: Remove the pipe_table block if we implement pipe_table fill.
(defconst markdown-ts--fill-unfillable-block-query
  '([(fenced_code_block) (indented_code_block) (pipe_table)] @block)
  "Tree-sitter query matching blocks where filling is inhibited.")