-
Notifications
You must be signed in to change notification settings - Fork 26
Example Snippets
Nick Marus edited this page Aug 21, 2016
·
3 revisions
bot.say('markdown', '**Hello**, please check out my webpage [here.](http://google.com)');
// set markdown to be the default message format...
flint.messageFormat = 'markdown';
flint.hears('hello', function(bot, trigger) {
bot.say('**Hello**, please check out my webpage [here.](http://google.com)');
});
flint.on('mentioned', function(bot, trigger) {
bot.say('markdown', '***Automated message:*** I am currently out of the office... For immediate assistance, please try [here](http://google.com).');
});