Function: org-texinfo-convert-region-to-texinfo

org-texinfo-convert-region-to-texinfo is an autoloaded, interactive and byte-compiled function defined in ox-texinfo.el.gz.

Signature

(org-texinfo-convert-region-to-texinfo)

Documentation

Assume the current region has Org syntax, and convert it to Texinfo.

This can be used in any buffer. For example, you can write an itemized list in Org syntax in an Texinfo buffer and use this command to convert it.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
;;;###autoload
(defun org-texinfo-convert-region-to-texinfo ()
  "Assume the current region has Org syntax, and convert it to Texinfo.
This can be used in any buffer.  For example, you can write an
itemized list in Org syntax in an Texinfo buffer and use this
command to convert it."
  (interactive)
  (org-export-replace-region-by 'texinfo))