├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── merge-dependabot.yml │ └── on-push-do-doco.yml ├── .gitignore ├── RedGateLicense.txt ├── code_of_conduct.md ├── license.txt ├── readme.md └── src ├── .editorconfig ├── .gitattributes ├── Directory.Build.props ├── Directory.Packages.props ├── Shared.sln.DotSettings ├── Tests ├── FakerUsage.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.Bogus ├── Waffle.cs ├── WaffleGenerator.Bogus.csproj └── WaffleGeneratorExtensions.cs ├── WaffleGenerator.slnx ├── WaffleGenerator.slnx.DotSettings ├── WaffleGenerator ├── AssemblyInfo.cs ├── Constants.cs ├── Extensions.cs ├── Heading.cs ├── InnerEngine.cs ├── Paragraph.cs ├── WaffleContent.cs ├── WaffleEngine.cs └── WaffleGenerator.csproj ├── appveyor.yml ├── global.json ├── icon.png ├── key.snk ├── mdsnippets.json └── nuget.config /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: SimonCropp 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/.github/workflows/merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/on-push-do-doco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/.github/workflows/on-push-do-doco.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /RedGateLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/RedGateLicense.txt -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/readme.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/.gitattributes -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Shared.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Shared.sln.DotSettings -------------------------------------------------------------------------------- /src/Tests/FakerUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/FakerUsage.cs -------------------------------------------------------------------------------- /src/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/Tests.csproj -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.HtmlWaffleMultiple.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.HtmlWaffleMultiple.verified.txt -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.HtmlWaffleMultipleWithHeadAndBody.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.HtmlWaffleMultipleWithHeadAndBody.verified.txt -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.HtmlWaffleNoHeading.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.HtmlWaffleNoHeading.verified.txt -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.HtmlWaffleNoHeadingWithHeadAndBody.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.HtmlWaffleNoHeadingWithHeadAndBody.verified.txt -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.HtmlWaffleSingle.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.HtmlWaffleSingle.verified.txt -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.HtmlWaffleSingleWithHeadAndBody.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.HtmlWaffleSingleWithHeadAndBody.verified.txt -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.MarkdownWaffleMultiple.verified.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.MarkdownWaffleMultiple.verified.md -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.MarkdownWaffleNoHeading.verified.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.MarkdownWaffleNoHeading.verified.md -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.MarkdownWaffleSingle.verified.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.MarkdownWaffleSingle.verified.md -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.TextWaffleMultiple.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.TextWaffleMultiple.verified.txt -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.TextWaffleNoHeading.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.TextWaffleNoHeading.verified.txt -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.TextWaffleSingle.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.TextWaffleSingle.verified.txt -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.Title.verified.txt: -------------------------------------------------------------------------------- 1 | The Aesthetic Of Economico-Social Disposition -------------------------------------------------------------------------------- /src/Tests/WaffleEngineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/Tests/WaffleEngineTests.cs -------------------------------------------------------------------------------- /src/WaffleGenerator.Bogus/Waffle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator.Bogus/Waffle.cs -------------------------------------------------------------------------------- /src/WaffleGenerator.Bogus/WaffleGenerator.Bogus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator.Bogus/WaffleGenerator.Bogus.csproj -------------------------------------------------------------------------------- /src/WaffleGenerator.Bogus/WaffleGeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator.Bogus/WaffleGeneratorExtensions.cs -------------------------------------------------------------------------------- /src/WaffleGenerator.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator.slnx -------------------------------------------------------------------------------- /src/WaffleGenerator.slnx.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator.slnx.DotSettings -------------------------------------------------------------------------------- /src/WaffleGenerator/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WaffleGenerator/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator/Constants.cs -------------------------------------------------------------------------------- /src/WaffleGenerator/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator/Extensions.cs -------------------------------------------------------------------------------- /src/WaffleGenerator/Heading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator/Heading.cs -------------------------------------------------------------------------------- /src/WaffleGenerator/InnerEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator/InnerEngine.cs -------------------------------------------------------------------------------- /src/WaffleGenerator/Paragraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator/Paragraph.cs -------------------------------------------------------------------------------- /src/WaffleGenerator/WaffleContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator/WaffleContent.cs -------------------------------------------------------------------------------- /src/WaffleGenerator/WaffleEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator/WaffleEngine.cs -------------------------------------------------------------------------------- /src/WaffleGenerator/WaffleGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/WaffleGenerator/WaffleGenerator.csproj -------------------------------------------------------------------------------- /src/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/appveyor.yml -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/global.json -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/key.snk -------------------------------------------------------------------------------- /src/mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/mdsnippets.json -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/WaffleGenerator/HEAD/src/nuget.config --------------------------------------------------------------------------------