|
| From: | Max Nikulin |
| Subject: | Re: [PATCH] ob-lua: Support all types and multiple values in results |
| Date: | Sat, 27 Apr 2024 17:57:50 +0700 |
| User-agent: | Mozilla Thunderbird |
On 26/04/2024 20:40, Ihor Radchenko wrote:
+++ b/lisp/ob-lua.el
@@ -282,6 +282,8 @@ (defvar org-babel-lua-wrapper-method
end
end
return result
+ elseif type(it) == 'string' then
+ return '\"' .. it .. '\"'
If you are adding quotes around then quote characters in the value should be escaped.
| [Prev in Thread] | Current Thread | [Next in Thread] |