Skip to content

Repository files navigation

WaffleGenerator

The Waffle Generator produces of text which, on first glance, looks like real, ponderous, prose; replete with clichés. For example:

The Aesthetic Of Economico-Social Disposition

"In this regard, the underlying surrealism of the take home message should not 
divert attention from The Aesthetic Of Economico-Social Disposition"
(Humphrey Yokomoto in The Journal of the Total Entative Item (20044U))

On any rational basis, a particular factor, such as the functional baseline, the 
analogy of object, the strategic requirements or the principal overriding programming 
provides an interesting insight into the complementary functional derivation. 
This trend may dissipate due to the mensurable proficiency.

This output can be used in similar way to Lorem ipsum content, in that it is useful for producing text for build software and producing design mockups.

Based on the awesome work by Andrew Clarke outlined in The Waffle Generator.

Code based on SDGGenerators - Red Gate SQL Data Generator Community Generators.

Main Package - WaffleGenerator NuGet Status

https://nuget.org/packages/WaffleGenerator/

PM> Install-Package WaffleGenerator

Usage

The WaffleEngine can be used to produce Html or text:

var waffleEngine = new WaffleEngine();
var builder = new StringBuilder();
waffleEngine.HtmlWaffle(
    paragraphs: 1,
    includeHeading: true,
    builder);
Debug.WriteLine(builder.ToString());
var waffleEngine = new WaffleEngine();
var builder = new StringBuilder();
waffleEngine.TextWaffle(
    paragraphs: 1,
    includeHeading: true,
    builder);
Debug.WriteLine(builder.ToString());

WaffleGenerator.Bogus NuGet Status

Extends Bogus to use WaffleGenerator.

https://nuget.org/packages/WaffleGenerator.Bogus/

PM> Install-Package WaffleGenerator.Bogus

Usage

The entry extension method is WaffleHtml() or WaffleText():

var faker = new Faker<Target>()
    .RuleFor(u => u.Property1, (f, u) => f.WaffleHtml())
    .RuleFor(u => u.Property2, (f, u) => f.WaffleHtml(paragraphs: 4, includeHeading: true))
    .RuleFor(u => u.Property3, (f, u) => f.WaffleText())
    .RuleFor(u => u.Property4, (f, u) => f.WaffleText(paragraphs: 4, includeHeading: false));

var target = faker.Generate();
Debug.WriteLine(target.Property1);
Debug.WriteLine(target.Property2);
Debug.WriteLine(target.Property3);
Debug.WriteLine(target.Property4);

Icon

Waffle designed by Made by Made from The Noun Project

About

Produces text which, on first glance, looks like real, ponderous, prose; replete with clichés.

Resources

Stars

Watchers

Forks

Releases

Sponsor this project

Used by

Contributors

Languages