README
Slack message formatting
RemoveLibrary version of this code.
Usage
const slack = require('@slack/client')
const makeRemoveFormatting = require('slack-remove-formatting')
const rtm = new slack.RtmClient(config.token)
rtm.on(slack.CLIENT_EVENTS.RTM.AUTHENTICATED, state => {
const removeFormatting = makeRemoveFormatting(state)
rtm.on(slack.RTM_EVENTS.MESSAGE, message => {
const text = removeFormatting(message.text)
console.log(text)
})
})