wp-shortcodes.js

0.0.1 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i wp-shortcodes.js

Weekly Downloads

0

Version

0.0.1

License

MIT

Last publish

Collaborators

  • achoi