Skip to content

Instantly share code, notes, and snippets.

@videlais
Created October 25, 2018 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save videlais/1a5f359c2b94f8b9448478b9f071d8f5 to your computer and use it in GitHub Desktop.
Save videlais/1a5f359c2b94f8b9448478b9f071d8f5 to your computer and use it in GitHub Desktop.
var tracery = require("tracery-grammar");
var symbols = {
"animals": ["deer", "fox", "rabbit"]
};
var grammar = tracery.createGrammar(symbols);
var results = grammar.flatten("There was a #animals# in the forest.");
console.log(results);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment