Function: markdown--with-gensyms
markdown--with-gensyms is a macro defined in markdown-mode.el.
Signature
(markdown--with-gensyms SYMBOLS &rest BODY)
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
;;; Table Editing =============================================================
;; These functions were originally adapted from `org-table.el'.
;; General helper functions
(defmacro markdown--with-gensyms (symbols &rest body)
(declare (debug (sexp body)) (indent 1))
`(let ,(mapcar (lambda (s)
`(,s (make-symbol (concat "--" (symbol-name ',s)))))
symbols)
,@body))