Variable: embark-org-export-in-place-map

embark-org-export-in-place-map is a variable defined in embark-org.el.

Value

-      negative-argument
0      digit-argument
1      digit-argument
2      digit-argument
3      digit-argument
4      digit-argument
5      digit-argument
6      digit-argument
7      digit-argument
8      digit-argument
9      digit-argument
A      embark-act-all
B      embark-become
C-SPC  mark
C-r    embark-isearch-backward
C-s    embark-isearch-forward
DEL    delete-region
E      embark-export
L      embark-live
S      embark-collect
SPC    embark-select
a      org-ascii-convert-region-to-ascii
h      org-html-convert-region-to-html
i      embark-insert
l      org-latex-convert-region-to-latex
m      org-md-convert-region-to-md
q      embark-toggle-quit
w      embark-copy-as-kill

Documentation

Keymap for actions which replace the region by an exported version.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark-org.el
;;; "Encode" region using Org export in place

(defvar-keymap embark-org-export-in-place-map
  :doc "Keymap for actions which replace the region by an exported version."
  :parent embark-general-map
  "m" #'org-md-convert-region-to-md
  "h" #'org-html-convert-region-to-html
  "a" #'org-ascii-convert-region-to-ascii
  "l" #'org-latex-convert-region-to-latex)