├── .github ├── CODEOWNERS ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── Sources └── MarkdownGenerator │ ├── Extensions.swift │ ├── MarkdownBlockquotes.swift │ ├── MarkdownCodeBlock.swift │ ├── MarkdownCollapsibleSection.swift │ ├── MarkdownConvertible.swift │ ├── MarkdownFile.swift │ ├── MarkdownHeader.swift │ ├── MarkdownImage.swift │ ├── MarkdownLink.swift │ ├── MarkdownList.swift │ └── MarkdownTable.swift ├── Tests ├── LinuxMain.swift └── MarkdownGeneratorTests │ ├── Internal │ └── MarkdownTableInternalTests.swift │ └── PublicInterface │ ├── ConsecutiveBlankLinesTests.swift │ ├── ExtensionsTests.swift │ ├── MarkdownBlockquotesTests.swift │ ├── MarkdownCodeBlockTests.swift │ ├── MarkdownCollapsibleSectionTests.swift │ ├── MarkdownConvertibleTests.swift │ ├── MarkdownFileTests.swift │ ├── MarkdownHeaderTests.swift │ ├── MarkdownImageTests.swift │ ├── MarkdownLinkTests.swift │ ├── MarkdownListTests.swift │ └── MarkdownTableTests.swift ├── codecov.yml └── docs ├── Package.md ├── PackageModules.dot ├── PackageModules.png ├── README.md ├── enums ├── CodeBlockStyle.md ├── MarkdownHeaderLevel.md ├── MarkdownHeaderStyle.md └── MarkdownListStyle.md ├── extensions ├── Array.md ├── MarkdownConvertible.md └── String.md ├── protocols └── MarkdownConvertible.md └── structs ├── MarkdownBlockquotes.md ├── MarkdownCodeBlock.md ├── MarkdownCollapsibleSection.md ├── MarkdownFile.md ├── MarkdownHeader.md ├── MarkdownImage.md ├── MarkdownLink.md ├── MarkdownList.md └── MarkdownTable.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @eneko 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/README.md -------------------------------------------------------------------------------- /Sources/MarkdownGenerator/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Sources/MarkdownGenerator/Extensions.swift -------------------------------------------------------------------------------- /Sources/MarkdownGenerator/MarkdownBlockquotes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Sources/MarkdownGenerator/MarkdownBlockquotes.swift -------------------------------------------------------------------------------- /Sources/MarkdownGenerator/MarkdownCodeBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Sources/MarkdownGenerator/MarkdownCodeBlock.swift -------------------------------------------------------------------------------- /Sources/MarkdownGenerator/MarkdownCollapsibleSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Sources/MarkdownGenerator/MarkdownCollapsibleSection.swift -------------------------------------------------------------------------------- /Sources/MarkdownGenerator/MarkdownConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Sources/MarkdownGenerator/MarkdownConvertible.swift -------------------------------------------------------------------------------- /Sources/MarkdownGenerator/MarkdownFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Sources/MarkdownGenerator/MarkdownFile.swift -------------------------------------------------------------------------------- /Sources/MarkdownGenerator/MarkdownHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Sources/MarkdownGenerator/MarkdownHeader.swift -------------------------------------------------------------------------------- /Sources/MarkdownGenerator/MarkdownImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Sources/MarkdownGenerator/MarkdownImage.swift -------------------------------------------------------------------------------- /Sources/MarkdownGenerator/MarkdownLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Sources/MarkdownGenerator/MarkdownLink.swift -------------------------------------------------------------------------------- /Sources/MarkdownGenerator/MarkdownList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Sources/MarkdownGenerator/MarkdownList.swift -------------------------------------------------------------------------------- /Sources/MarkdownGenerator/MarkdownTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Sources/MarkdownGenerator/MarkdownTable.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/Internal/MarkdownTableInternalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/Internal/MarkdownTableInternalTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/ConsecutiveBlankLinesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/ConsecutiveBlankLinesTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/ExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/ExtensionsTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/MarkdownBlockquotesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/MarkdownBlockquotesTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/MarkdownCodeBlockTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/MarkdownCodeBlockTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/MarkdownCollapsibleSectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/MarkdownCollapsibleSectionTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/MarkdownConvertibleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/MarkdownConvertibleTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/MarkdownFileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/MarkdownFileTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/MarkdownHeaderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/MarkdownHeaderTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/MarkdownImageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/MarkdownImageTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/MarkdownLinkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/MarkdownLinkTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/MarkdownListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/MarkdownListTests.swift -------------------------------------------------------------------------------- /Tests/MarkdownGeneratorTests/PublicInterface/MarkdownTableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/Tests/MarkdownGeneratorTests/PublicInterface/MarkdownTableTests.swift -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/Package.md -------------------------------------------------------------------------------- /docs/PackageModules.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/PackageModules.dot -------------------------------------------------------------------------------- /docs/PackageModules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/PackageModules.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/enums/CodeBlockStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/enums/CodeBlockStyle.md -------------------------------------------------------------------------------- /docs/enums/MarkdownHeaderLevel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/enums/MarkdownHeaderLevel.md -------------------------------------------------------------------------------- /docs/enums/MarkdownHeaderStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/enums/MarkdownHeaderStyle.md -------------------------------------------------------------------------------- /docs/enums/MarkdownListStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/enums/MarkdownListStyle.md -------------------------------------------------------------------------------- /docs/extensions/Array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/extensions/Array.md -------------------------------------------------------------------------------- /docs/extensions/MarkdownConvertible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/extensions/MarkdownConvertible.md -------------------------------------------------------------------------------- /docs/extensions/String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/extensions/String.md -------------------------------------------------------------------------------- /docs/protocols/MarkdownConvertible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/protocols/MarkdownConvertible.md -------------------------------------------------------------------------------- /docs/structs/MarkdownBlockquotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/structs/MarkdownBlockquotes.md -------------------------------------------------------------------------------- /docs/structs/MarkdownCodeBlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/structs/MarkdownCodeBlock.md -------------------------------------------------------------------------------- /docs/structs/MarkdownCollapsibleSection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/structs/MarkdownCollapsibleSection.md -------------------------------------------------------------------------------- /docs/structs/MarkdownFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/structs/MarkdownFile.md -------------------------------------------------------------------------------- /docs/structs/MarkdownHeader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/structs/MarkdownHeader.md -------------------------------------------------------------------------------- /docs/structs/MarkdownImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/structs/MarkdownImage.md -------------------------------------------------------------------------------- /docs/structs/MarkdownLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/structs/MarkdownLink.md -------------------------------------------------------------------------------- /docs/structs/MarkdownList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/structs/MarkdownList.md -------------------------------------------------------------------------------- /docs/structs/MarkdownTable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/MarkdownGenerator/HEAD/docs/structs/MarkdownTable.md --------------------------------------------------------------------------------