diff --git a/plugins/currency.lua b/plugins/currency.lua index ebcd834..53ca411 100755 --- a/plugins/currency.lua +++ b/plugins/currency.lua @@ -45,8 +45,9 @@ local action = function(msg) end - local output = '*' .. amount .. ' ' .. from .. ' = ' .. result .. ' ' .. to .. '*\n\n' - output = output .. '`' .. os.date('!%F %T UTC') .. '\nSource: Google Finance`' + local output = amount .. ' ' .. from .. ' = ' .. result .. ' ' .. to .. '\n' + output = output .. os.date('!%F %T UTC') .. '\nSource: Google Finance' + output = '```\n' .. output .. '\n```' sendMessage(msg.chat.id, output, true, nil, true)