Variable: org-texinfo-text-markup-alist
org-texinfo-text-markup-alist is a customizable variable defined in
ox-texinfo.el.gz.
Value
((bold . "@strong{%s}") (code . code) (italic . "@emph{%s}")
(verbatim . samp))
Documentation
Alist of Texinfo expressions to convert text markup.
The key must be a symbol among bold, code, italic,
strike-through, underscore and verbatim. The value is
a formatting string to wrap fontified text with.
Value can also be set to the following symbols: verb, samp
and code. With the first one, Org uses "@verb" to create
a format string and selects a delimiter character that isn't in
the string. For the other two, Org uses "@samp" or "@code"
to typeset and protects special characters.
When no association is found for a given markup, text is returned as-is.
This variable was added, or its default value changed, in Org version
9.1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
;;;; Text markup
(defcustom org-texinfo-text-markup-alist '((bold . "@strong{%s}")
(code . code)
(italic . "@emph{%s}")
(verbatim . samp))
"Alist of Texinfo expressions to convert text markup.
The key must be a symbol among `bold', `code', `italic',
`strike-through', `underscore' and `verbatim'. The value is
a formatting string to wrap fontified text with.
Value can also be set to the following symbols: `verb', `samp'
and `code'. With the first one, Org uses \"@verb\" to create
a format string and selects a delimiter character that isn't in
the string. For the other two, Org uses \"@samp\" or \"@code\"
to typeset and protects special characters.
When no association is found for a given markup, text is returned
as-is."
:version "26.1"
:package-version '(Org . "9.1")
:type 'alist
:options '(bold code italic strike-through underscore verbatim))