Variable: markdown-ts--configured-languages

markdown-ts--configured-languages is a buffer-local variable defined in markdown-ts-mode.el.gz.

Documentation

A list of languages that have been setup in this buffer.

When a code block of a language appears, markdown-ts-mode loads language setups like font-lock and indentation for that language, and adds that language to this list.

Source Code

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

(defvar-local markdown-ts--configured-languages nil
  "A list of languages that have been setup in this buffer.

When a code block of a language appears, `markdown-ts-mode' loads
language setups like font-lock and indentation for that language, and
adds that language to this list.")