Function: org-ascii-verse-block
org-ascii-verse-block is a byte-compiled function defined in
ox-ascii.el.gz.
Signature
(org-ascii-verse-block VERSE-BLOCK CONTENTS INFO)
Documentation
Transcode a VERSE-BLOCK element from Org to ASCII.
CONTENTS is verse block contents. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
;;;; Verse Block
(defun org-ascii-verse-block (verse-block contents info)
"Transcode a VERSE-BLOCK element from Org to ASCII.
CONTENTS is verse block contents. INFO is a plist holding
contextual information."
(org-ascii--indent-string
(org-ascii--justify-element contents verse-block info)
(plist-get info :ascii-quote-margin)))