Skip to content

Plugins LinkEmbed

fusion94 edited this page Feb 21, 2013 · 1 revision

Description

Just a very basic plugin for embedding links into a message.

Usage

There's no real usage guidelines. Just type in a URL into a message.

http://google.com

Code

class Kandan.Plugins.LinkEmbed

  @options:
    regex: /(http?\S*)/g

  @init: ()->
    Kandan.Modifiers.register @options.regex, (message, state)=>
      message.content = message.content
        .replace(@options.regex, '<a target="_blank" href="$1">$1</a>')
      return Kandan.Helpers.Activities.buildFromMessageTemplate(message)