New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

slackdown

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

slackdown

A javascript message parser for the slack.com api

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

Slackdown

Slackdown is a simple javascript parser for translating messages from the slack.com API into html.

Basic formatting like bold, italic, underscore, fixed width and slack.com <> tags are supported. See TODO for unsupported formatting.

The parser is intended to be used when you want to display messages from slack.com on an html page. The parser can not translate message from html to slack format. The script is stand alone and does not use jQuery or any other frameworks (except for testing).

Formatting-rules are found here https://api.slack.com/docs/formatting

Usage

Including

In Browser:

<script src="slackdown.min.js"></script>

With Require.js:

define(['slackdown'], function(slackdown) {
    //Your code
});

With Node.js

var slackdown = require('slackdown');

Slackdown is not published as a npm package. Include by github reference.

{
  "dependencies": {
    "slackdown": "blockmar/slackdown"
  }
}

Parsing text

var html = slackdown.parse("This is a text from <http://slack.com|Slack>");

Testing

Tests are runmed using QUnit. Open test/index.html in your browser. Dependencies are handled using Bower.

Build/Distribute

The minified version of Slackdown is created by a Grunt-task using uglify.

TODO

Known bugs

  • None right now

Keywords

slack.com

FAQs

Package last updated on 26 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts