Skip to content

mandric/kanso-showdown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Kanso Showdown

This package allows you to quickly start using Showdown in your Kanso project.

Install

Add to your project's kanso.json dependencies setting, here is the minimal case:

"dependencies": {
    "modules": null,
    "showdown": null
}

Run kanso install to fetch and install your package.

Usage

Require the module in your code and call makeHtml.

var showdown = require('showdown'),
    sd = new showdown.converter(),
    data = 'Markdown *helps* a lot.';

$('#content').html(sd.makeHtml(data));

Do a kanso push to build and deploy to your CouchDB:

kanso push http://localhost:5984/example

Docs

A good place to start is the showdown readme bundled in the package as showdown/README.md.

Maintenance

CommonJS Patch

Note the showdown.js library was modified slightly to be commonjs compatible.

< if (typeof module.exports != 'undefined') module.exports = Showdown;
---
> if (typeof exports != 'undefined') exports.Showdown = Showdown;

About

A Kanso package to quickly start using showdown.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published