Skip to content

Example Snippets

Nick Marus edited this page Aug 21, 2016 · 3 revisions

Markdown

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)');
});

Using Mention Event

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).');
});
Clone this wiki locally