babel: no longer automatically inserting '='s around inline code results
* contrib/babel/lisp/org-babel-exp.el (org-babel-exp-results): removing forced verbatim '=' tags from around inline source code results, if users want their results displayed in this way they can add the '='s easily themselves, but there is no way to remove '='s inserted automatically by Org-babel.
This commit is contained in:
parent
153f0241da
commit
7361f79d4c
|
@ -229,8 +229,8 @@ results into the buffer."
|
||||||
(t
|
(t
|
||||||
(if (stringp raw)
|
(if (stringp raw)
|
||||||
(if (= 0 (length raw)) "=(no results)="
|
(if (= 0 (length raw)) "=(no results)="
|
||||||
(format "=%s=" raw))
|
(format "%s" raw))
|
||||||
(format "=%S=" raw)))))))
|
(format "%S" raw)))))))
|
||||||
('block
|
('block
|
||||||
(org-babel-execute-src-block
|
(org-babel-execute-src-block
|
||||||
nil info (org-babel-merge-params
|
nil info (org-babel-merge-params
|
||||||
|
|
Loading…
Reference in New Issue