0.0.1 • Published 8 years ago

wp-shortcodes.js v0.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

wp-shortcodes.js Build Status

Render WP style shortcodes with your own custom rules

Inspired by shortcode.js

Usage

var text = "[first name=hello] [second]world![/second]";

var tags = {
	first: function(){
		return this.options.name;
	},
	second: function(){
		return this.contents;
	}
}

var out = new Shortcode(text, tags).get();
console.log(out); // hello world!

How to Test

Tests are run with mocha/chai

>npm test