spintext
v1.0.2
Published
A tool for generating text from word chains(optionally nested). Source is a refactored version of the TypeScript project found in [this repo](https://github.com/hallojoe/HalloJoe.Spin).
Downloads
2
Readme
SpinText
A tool for generating text from word chains(optionally nested). Source is a refactored version of the TypeScript project found in this repo.
Install
npm intall spintext --save
Use
var text = "{This is|It's} {Spin|Spin-text|Spin text}. {Enjoy!| You love it!}"
var engine = new SpinText.Engine(text);
console.log('Minimum number of words output will contain ', engine.countMinWords());
console.log('Maximum number of words output will contain ', engine.countMaxWords());
console.log('Possible number of variants output can be ', engine.countVariants());
console.log('Text result', engine.toString());
Try Above example on plnkr
Try
A demo can be found here
Notes
- 1.0.1 - Initial commit.
- 1.0.2 - Fix issue with random/seed not beeing set properly.