Function: org-odt-strike-through
org-odt-strike-through is a byte-compiled function defined in
ox-odt.el.gz.
Signature
(org-odt-strike-through STRIKE-THROUGH CONTENTS INFO)
Documentation
Transcode STRIKE-THROUGH from Org to ODT.
CONTENTS is the text with strike-through markup. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Strike-Through
(defun org-odt-strike-through (_strike-through contents _info)
"Transcode STRIKE-THROUGH from Org to ODT.
CONTENTS is the text with strike-through markup. INFO is a plist
holding contextual information."
(format "<text:span text:style-name=\"%s\">%s</text:span>"
"Strikethrough" contents))