Skip to content

Instantly share code, notes, and snippets.

@shokai
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shokai/e8af6c70e2f578274cf5 to your computer and use it in GitHub Desktop.
Save shokai/e8af6c70e2f578274cf5 to your computer and use it in GitHub Desktop.
# Description:
# encodeされたURLを日本語に戻す
#
# Author:
# @shokai
module.exports = (robot) ->
robot.hear /(https?:\/\/[^ ]+)/i, (msg) ->
who = msg.message.user.name
url = msg.match[1]
return if url is decodeURI url
url = decodeURI(url).replace /[ <>]/g, (c) -> encodeURI c
msg.send "@#{who} 日本語でおk\n#{url}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment