Variable: markdown-ts-code-block-source-mode-map

markdown-ts-code-block-source-mode-map is a variable defined in markdown-ts-mode.el.gz.

Value

((bash . bash-ts-mode) (c . c-ts-mode) (c-sharp . csharp-ts-mode)
 (cmake . cmake-ts-mode) (cpp . c++-ts-mode) (css . css-ts-mode)
 (dockerfile . dockerfile-ts-mode) (elixir . elixir-ts-mode)
 (go . go-ts-mode) (gomod . go-mod-ts-mode) (gowork . go-work-ts-mode)
 (heex . heex-ts-mode) (html . html-ts-mode) (java . java-ts-mode)
 (javascript . js-ts-mode) (json . json-ts-mode) (lua . lua-ts-mode)
 (php . php-ts-mode) (python . python-ts-mode) (ruby . ruby-ts-mode)
 (rust . rust-ts-mode) (toml . toml-ts-mode) (tsx . tsx-ts-mode)
 (typescript . typescript-ts-mode) (yaml . yaml-ts-mode))

Documentation

An alist of supported code block languages and their major mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defvar markdown-ts-code-block-source-mode-map
  '((bash . bash-ts-mode)
    (c . c-ts-mode)
    (c-sharp . csharp-ts-mode)
    (cmake . cmake-ts-mode)
    (cpp . c++-ts-mode)
    (css . css-ts-mode)
    (dockerfile . dockerfile-ts-mode)
    (elixir . elixir-ts-mode)
    (go . go-ts-mode)
    (gomod . go-mod-ts-mode)
    (gowork . go-work-ts-mode)
    (heex . heex-ts-mode)
    (html . html-ts-mode)
    (java . java-ts-mode)
    (javascript . js-ts-mode)
    (json . json-ts-mode)
    (lua . lua-ts-mode)
    (php . php-ts-mode)
    (python . python-ts-mode)
    (ruby . ruby-ts-mode)
    (rust . rust-ts-mode)
    (toml . toml-ts-mode)
    (tsx . tsx-ts-mode)
    (typescript . typescript-ts-mode)
    (yaml . yaml-ts-mode))
  "An alist of supported code block languages and their major mode.")