Function: org-ascii-strike-through
org-ascii-strike-through is a byte-compiled function defined in
ox-ascii.el.gz.
Signature
(org-ascii-strike-through STRIKE-THROUGH CONTENTS INFO)
Documentation
Transcode STRIKE-THROUGH from Org to ASCII.
CONTENTS is text with strike-through markup. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
;;;; Strike-through
(defun org-ascii-strike-through (_strike-through contents _info)
"Transcode STRIKE-THROUGH from Org to ASCII.
CONTENTS is text with strike-through markup. INFO is a plist
holding contextual information."
(format "+%s+" contents))