- Echo: Fix für Anführungszeichen in InlineQuerys

- Core: Kennzeichne Inline-Querys
This commit is contained in:
Andreas Bielawski 2016-07-13 01:21:50 +02:00
parent 7ce4411a65
commit 0f2e1460cb
2 changed files with 5 additions and 2 deletions

View File

@ -225,7 +225,7 @@ function match_inline_plugins(self, inline_query, config, plugin)
break;
end
end
print(plugin.name..' triggered')
print('Inline: '..plugin.name..' triggered')
return plugin.inline_callback(self, inline_query, config, matches)
end)
if not success then

View File

@ -16,6 +16,9 @@ end
function echo:inline_callback(inline_query, config, matches)
local text = matches[1]
local results = '['
if text:match('"') then
text = text:gsub('"', '\\"')
end
-- enable custom markdown button
if text:match('%[.*%]%(.*%)') or text:match('%*.*%*') or text:match('_.*_') or text:match('`.*`') then