Function: org-md-example-block

org-md-example-block is a byte-compiled function defined in ox-md.el.gz.

Signature

(org-md-example-block EXAMPLE-BLOCK CONTENTS INFO)

Documentation

Transcode EXAMPLE-BLOCK element into Markdown format.

CONTENTS is nil. INFO is a plist used as a communication channel.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-md.el.gz
;;;; Example Block, Src Block and Export Block

(defun org-md-example-block (example-block _contents info)
  "Transcode EXAMPLE-BLOCK element into Markdown format.
CONTENTS is nil.  INFO is a plist used as a communication
channel."
  (replace-regexp-in-string
   "^" "    "
   (org-remove-indentation
    (org-export-format-code-default example-block info))))