gitextract_pa37ucf7/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── dependabot.yml │ ├── stale.yml │ └── workflows/ │ ├── merge-dependabot.yml │ ├── milestone-release.yml │ └── on-push-do-doco.yml ├── .gitignore ├── RedGateLicense.txt ├── code_of_conduct.md ├── license.txt ├── readme.md └── src/ ├── Directory.Build.props ├── Directory.Packages.props ├── Shared.sln.DotSettings ├── Tests/ │ ├── FakerUsage.cs │ ├── GlobalUsings.cs │ ├── ModuleInitializer.cs │ ├── Tests.csproj │ ├── WaffleEngineTests.HtmlWaffleMultiple.verified.txt │ ├── WaffleEngineTests.HtmlWaffleMultipleWithHeadAndBody.verified.txt │ ├── WaffleEngineTests.HtmlWaffleNoHeading.verified.txt │ ├── WaffleEngineTests.HtmlWaffleNoHeadingWithHeadAndBody.verified.txt │ ├── WaffleEngineTests.HtmlWaffleSingle.verified.txt │ ├── WaffleEngineTests.HtmlWaffleSingleWithHeadAndBody.verified.txt │ ├── WaffleEngineTests.MarkdownWaffleMultiple.verified.md │ ├── WaffleEngineTests.MarkdownWaffleNoHeading.verified.md │ ├── WaffleEngineTests.MarkdownWaffleSingle.verified.md │ ├── WaffleEngineTests.TextWaffleMultiple.verified.txt │ ├── WaffleEngineTests.TextWaffleNoHeading.verified.txt │ ├── WaffleEngineTests.TextWaffleSingle.verified.txt │ ├── WaffleEngineTests.Title.verified.txt │ └── WaffleEngineTests.cs ├── WaffleGenerator/ │ ├── AssemblyInfo.cs │ ├── Constants.cs │ ├── Extensions.cs │ ├── Heading.cs │ ├── InnerEngine.cs │ ├── Paragraph.cs │ ├── WaffleContent.cs │ ├── WaffleEngine.cs │ └── WaffleGenerator.csproj ├── WaffleGenerator.Bogus/ │ ├── Waffle.cs │ ├── WaffleGenerator.Bogus.csproj │ └── WaffleGeneratorExtensions.cs ├── WaffleGenerator.slnx ├── WaffleGenerator.slnx.DotSettings ├── appveyor.yml ├── global.json ├── key.snk ├── mdsnippets.json └── nuget.config