ox-texinfo: Use @code instead of @verb for inline src blocks

* lisp/ox-texinfo.el (org-texinfo-inline-src-block): Use @code.
This commit is contained in:
Nicolas Goaziou 2017-06-07 00:14:35 +02:00
parent fdac3c0140
commit 0ff8ba5907
2 changed files with 7 additions and 3 deletions

View File

@ -354,6 +354,10 @@ is now obselete.
Now ~=...=~ markup uses ~@samp{}~ instead of ~@verb{}~. You can use
~@verb{}~ again by customizing the variable.
*** Texinfo exports inline src blocks as ~@code{}~
It is possible to write an inline src block filter to use ~@verb{}~
again.
* Version 9.0

View File

@ -873,9 +873,9 @@ See `org-texinfo-format-headline-function' for details."
"Transcode an INLINE-SRC-BLOCK element from Org to Texinfo.
CONTENTS holds the contents of the item. INFO is a plist holding
contextual information."
(let* ((code (org-element-property :value inline-src-block))
(separator (org-texinfo--find-verb-separator code)))
(concat "@verb{" separator code separator "}")))
(format "@code{%s}"
(org-texinfo--sanitize-content
(org-element-property :value inline-src-block))))
;;;; Inlinetask