hallojoe / SpinText

A tool for generating random textual content from human written textual chains.

Home Page:https://hallojoe.github.io/SpinText/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 install 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

A demo can be found here

Notes

  • 1.0.1 - Initial commit.
  • 1.0.2 - Fix issue with random/seed not beeing set properly.

About

A tool for generating random textual content from human written textual chains.

https://hallojoe.github.io/SpinText/

License:MIT License


Languages

Language:TypeScript 76.1%Language:CSS 14.5%Language:HTML 7.1%Language:JavaScript 2.4%