Function: org-cite-emphasize

org-cite-emphasize is a byte-compiled function defined in oc.el.gz.

Signature

(org-cite-emphasize TYPE &rest DATA)

Documentation

Apply emphasis TYPE on DATA.

TYPE is a symbol among bold, italic, strike-through and underline. DATA are strings, objects or secondary strings. Return an object of type TYPE.

Source Code

;; Defined in /usr/src/emacs/lisp/org/oc.el.gz
(defun org-cite-emphasize (type &rest data)
  "Apply emphasis TYPE on DATA.
TYPE is a symbol among `bold', `italic', `strike-through' and `underline'.
DATA are strings, objects or secondary strings.  Return an object of type TYPE."
  (declare (indent 1))
  (unless (memq type '(bold italic strike-through underline))
    (error "Wrong emphasis type: %S" type))
  (apply #'org-element-create type nil (apply #'org-cite-concat data)))