SYMBOL INDEX (73 symbols across 12 files) FILE: src/Tests/FakerUsage.cs class FakerUsage (line 6) | [TestFixture] method Sample (line 9) | [Test] method Run (line 45) | [Test] class Target (line 65) | public class Target FILE: src/Tests/ModuleInitializer.cs class ModuleInitializer (line 1) | static class ModuleInitializer method Initialize (line 3) | [ModuleInitializer] FILE: src/Tests/WaffleEngineTests.cs class WaffleEngineTests (line 1) | [TestFixture] method TextWaffleSample (line 4) | [Test] method MarkdownWaffleSample (line 17) | [Test] method HtmlWaffleSample (line 30) | [Test] method TextWaffleSingle (line 44) | [Test] method EndsWith (line 52) | [Test] method MultiTextShouldNotDuplicate (line 80) | [Test] method MultiHtmlShouldNotDuplicate (line 88) | [Test] method MultiMarkdownShouldNotDuplicate (line 96) | [Test] method MarkdownWaffleSingle (line 104) | [Test] method Title (line 112) | [Test] method HtmlWaffleSingle (line 120) | [Test] method HtmlWaffleSingleWithHeadAndBody (line 128) | [Test] method TextWaffleMultiple (line 136) | [Test] method MarkdownWaffleMultiple (line 144) | [Test] method HtmlWaffleMultiple (line 152) | [Test] method HtmlWaffleMultipleWithHeadAndBody (line 160) | [Test] method TextWaffleNoHeading (line 168) | [Test] method MarkdownWaffleNoHeading (line 176) | [Test] method HtmlWaffleNoHeading (line 184) | [Test] method HtmlWaffleNoHeadingWithHeadAndBody (line 192) | [Test] FILE: src/WaffleGenerator.Bogus/Waffle.cs class Waffle (line 5) | public class Waffle : DataSet method Html (line 7) | public string Html(int paragraphs = 1, bool includeHeading = true, boo... method Text (line 10) | public string Text(int paragraphs = 1, bool includeHeading = true) => method Markdown (line 13) | public string Markdown(int paragraphs = 1, bool includeHeading = true) => method Title (line 16) | public string Title() => method RandomNumber (line 19) | int RandomNumber(int i) => FILE: src/WaffleGenerator.Bogus/WaffleGeneratorExtensions.cs class WaffleExtensions (line 5) | public static class WaffleExtensions method Waffle (line 7) | public static Waffle Waffle(this Faker faker) => method WaffleHtml (line 10) | public static string WaffleHtml(this Faker faker, int paragraphs = 1, ... method WaffleTitle (line 15) | public static string WaffleTitle(this Faker faker) => method WaffleText (line 20) | public static string WaffleText(this Faker faker, int paragraphs = 1, ... method WaffleMarkdown (line 25) | public static string WaffleMarkdown(this Faker faker, int paragraphs =... FILE: src/WaffleGenerator/Constants.cs class Constants (line 3) | class Constants FILE: src/WaffleGenerator/Extensions.cs class Extensions (line 1) | static class Extensions method EndsWith (line 3) | public static bool EndsWith(this StringBuilder builder, params char[] ... FILE: src/WaffleGenerator/Heading.cs type Heading (line 1) | record Heading(string Quote, string Cite, string Buzz, string Title); FILE: src/WaffleGenerator/InnerEngine.cs class InnerEngine (line 3) | class InnerEngine(Func random) method EvaluateRandomPhrase (line 13) | void EvaluateRandomPhrase(string[] phrases, StringBuilder output) method EvaluatePhrase (line 19) | void EvaluatePhrase(string phrase, StringBuilder result) method EvaluateChar (line 53) | void EvaluateChar(char c, StringBuilder builder) method HasSentenceEnded (line 117) | static bool HasSentenceEnded(StringBuilder result) => method EvaluateCardinalSequence (line 120) | void EvaluateCardinalSequence(StringBuilder output) method EvaluateOrdinalSequence (line 130) | void EvaluateOrdinalSequence(StringBuilder output) method RandomDate (line 140) | void RandomDate(StringBuilder output) => method TitleCaseWords (line 143) | static string TitleCaseWords(string input) => method GetContent (line 146) | public WaffleContent GetContent(int paragraphsCount, bool includeHeading) method BuildTitle (line 189) | public string BuildTitle() FILE: src/WaffleGenerator/Paragraph.cs type Paragraph (line 1) | record Paragraph(string? Heading, string Body); FILE: src/WaffleGenerator/WaffleContent.cs type WaffleContent (line 1) | record WaffleContent(Heading? Heading, List Paragraphs); FILE: src/WaffleGenerator/WaffleEngine.cs class WaffleEngine (line 3) | public static class WaffleEngine method Html (line 5) | public static string Html(int seed, int paragraphs, bool includeHeadin... method Html (line 8) | public static string Html(int paragraphs, bool includeHeading, bool in... method Html (line 11) | public static string Html(Random random, int paragraphs, bool includeH... method Html (line 14) | public static string Html(Func random, int paragraphs, bool ... method Title (line 65) | public static string Title() => method Title (line 68) | public static string Title(int seed) => method Title (line 71) | public static string Title(Random random) => method Title (line 74) | public static string Title(Func random) method Markdown (line 80) | public static string Markdown(int seed, int paragraphs, bool includeHe... method Markdown (line 83) | public static string Markdown(int paragraphs, bool includeHeading) => method Markdown (line 86) | public static string Markdown(Random random, int paragraphs, bool incl... method Markdown (line 89) | public static string Markdown(Func random, int paragraphs, b... method Text (line 126) | public static string Text(int seed, int paragraphs, bool includeHeadin... method Text (line 129) | public static string Text(int paragraphs, bool includeHeading) => method Text (line 132) | public static string Text(Random random, int paragraphs, bool includeH... method Text (line 135) | public static string Text(Func random, int paragraphs, bool ...