├── .dockerignore ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ ├── documentation.yml │ ├── homebrew_ci.yml │ ├── publish.yml │ └── release.yml ├── .gitignore ├── .node ├── index.js ├── package-lock.json └── package.json ├── .vscode └── settings.json ├── Assets └── css │ └── all.css ├── Brewfile ├── Brewfile.lock.json ├── Changelog.md ├── Dockerfile ├── LICENSE.md ├── Makefile ├── Package.resolved ├── Package.swift ├── Package@swift-5.4.swift ├── Package@swift-5.5.swift ├── README.md ├── Sources ├── DCOV │ ├── Entry.swift │ ├── Ratio.swift │ └── Report.swift ├── SwiftDoc │ ├── API.swift │ ├── CompilationCondition.swift │ ├── Extensions │ │ ├── Array+Parallel.swift │ │ ├── Foundation+Extensions.swift │ │ ├── SwiftSemantics+Extensions.swift │ │ └── SwiftSyntax+Extensions.swift │ ├── Helpers.swift │ ├── Identifier.swift │ ├── Interface.swift │ ├── Module.swift │ ├── Relationship.swift │ ├── SourceFile.swift │ ├── Symbol.swift │ └── Unknown.swift └── swift-doc │ ├── Extensions │ ├── CommonMark+Extensions.swift │ ├── DCOV+Extensions.swift │ ├── HypertextLiteral+Extensions.swift │ ├── StringProtocol+Extensions.swift │ └── SwiftDoc+Extensions.swift │ ├── Generated │ └── CSS.swift │ ├── Helpers │ └── Await.swift │ ├── Subcommands │ ├── Coverage.swift │ ├── Diagram.swift │ └── Generate.swift │ ├── Supporting Types │ ├── AccessLevel.swift │ ├── Component.swift │ ├── Components │ │ ├── Abstract.swift │ │ ├── Declaration.swift │ │ ├── Documentation.swift │ │ ├── Members.swift │ │ ├── OperatorImplementations.swift │ │ ├── Relationships.swift │ │ └── Requirements.swift │ ├── Helpers.swift │ ├── Layout.swift │ ├── Page.swift │ └── Pages │ │ ├── ExternalTypePage.swift │ │ ├── FooterPage.swift │ │ ├── GlobalPage.swift │ │ ├── HomePage.swift │ │ ├── OperatorPage.swift │ │ ├── SidebarPage.swift │ │ ├── TypePage.swift │ │ └── TypealiasPage.swift │ └── main.swift ├── Tests ├── EndToEndTests │ ├── CoverageSubcommandTests.swift │ ├── DiagramSubcommandTests.swift │ ├── GenerateSubcommandTests.swift │ └── Helpers │ │ ├── Bundle+Extensions.swift │ │ ├── Process+Extensions.swift │ │ ├── XCTestCase+Extensions.swift │ │ └── temporaryDirectory.swift ├── LinuxMain.swift └── SwiftDocTests │ ├── Helpers │ └── temporaryFile.swift │ ├── InterfaceTypeTests.swift │ ├── NestedTypesTests.swift │ ├── PathTests.swift │ └── SourceFileTests.swift ├── WiX ├── swift-doc.wixproj └── swift-doc.wxs └── action.yml /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .build 3 | .swiftpm 4 | Package.resolved 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/homebrew_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/.github/workflows/homebrew_ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/.gitignore -------------------------------------------------------------------------------- /.node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/.node/index.js -------------------------------------------------------------------------------- /.node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/.node/package-lock.json -------------------------------------------------------------------------------- /.node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/.node/package.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Assets/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Assets/css/all.css -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- 1 | brew 'graphviz' 2 | -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Brewfile.lock.json -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Changelog.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-5.4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Package@swift-5.4.swift -------------------------------------------------------------------------------- /Package@swift-5.5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Package@swift-5.5.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/README.md -------------------------------------------------------------------------------- /Sources/DCOV/Entry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/DCOV/Entry.swift -------------------------------------------------------------------------------- /Sources/DCOV/Ratio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/DCOV/Ratio.swift -------------------------------------------------------------------------------- /Sources/DCOV/Report.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/DCOV/Report.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/API.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/CompilationCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/CompilationCondition.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/Extensions/Array+Parallel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/Extensions/Array+Parallel.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/Extensions/Foundation+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/Extensions/Foundation+Extensions.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/Extensions/SwiftSemantics+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/Extensions/SwiftSemantics+Extensions.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/Extensions/SwiftSyntax+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/Extensions/SwiftSyntax+Extensions.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/Helpers.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/Identifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/Identifier.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/Interface.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/Module.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/Relationship.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/Relationship.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/SourceFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/SourceFile.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/Symbol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/Symbol.swift -------------------------------------------------------------------------------- /Sources/SwiftDoc/Unknown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/SwiftDoc/Unknown.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Extensions/CommonMark+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Extensions/CommonMark+Extensions.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Extensions/DCOV+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Extensions/DCOV+Extensions.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Extensions/HypertextLiteral+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Extensions/HypertextLiteral+Extensions.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Extensions/StringProtocol+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Extensions/StringProtocol+Extensions.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Extensions/SwiftDoc+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Extensions/SwiftDoc+Extensions.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Generated/CSS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Generated/CSS.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Helpers/Await.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Helpers/Await.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Subcommands/Coverage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Subcommands/Coverage.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Subcommands/Diagram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Subcommands/Diagram.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Subcommands/Generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Subcommands/Generate.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/AccessLevel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/AccessLevel.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Component.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Component.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Components/Abstract.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Components/Abstract.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Components/Declaration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Components/Declaration.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Components/Documentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Components/Documentation.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Components/Members.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Components/Members.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Components/OperatorImplementations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Components/OperatorImplementations.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Components/Relationships.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Components/Relationships.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Components/Requirements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Components/Requirements.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Helpers.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Layout.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Page.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Page.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Pages/ExternalTypePage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Pages/ExternalTypePage.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Pages/FooterPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Pages/FooterPage.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Pages/GlobalPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Pages/GlobalPage.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Pages/HomePage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Pages/HomePage.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Pages/OperatorPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Pages/OperatorPage.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Pages/SidebarPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Pages/SidebarPage.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Pages/TypePage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Pages/TypePage.swift -------------------------------------------------------------------------------- /Sources/swift-doc/Supporting Types/Pages/TypealiasPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/Supporting Types/Pages/TypealiasPage.swift -------------------------------------------------------------------------------- /Sources/swift-doc/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Sources/swift-doc/main.swift -------------------------------------------------------------------------------- /Tests/EndToEndTests/CoverageSubcommandTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/EndToEndTests/CoverageSubcommandTests.swift -------------------------------------------------------------------------------- /Tests/EndToEndTests/DiagramSubcommandTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/EndToEndTests/DiagramSubcommandTests.swift -------------------------------------------------------------------------------- /Tests/EndToEndTests/GenerateSubcommandTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/EndToEndTests/GenerateSubcommandTests.swift -------------------------------------------------------------------------------- /Tests/EndToEndTests/Helpers/Bundle+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/EndToEndTests/Helpers/Bundle+Extensions.swift -------------------------------------------------------------------------------- /Tests/EndToEndTests/Helpers/Process+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/EndToEndTests/Helpers/Process+Extensions.swift -------------------------------------------------------------------------------- /Tests/EndToEndTests/Helpers/XCTestCase+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/EndToEndTests/Helpers/XCTestCase+Extensions.swift -------------------------------------------------------------------------------- /Tests/EndToEndTests/Helpers/temporaryDirectory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/EndToEndTests/Helpers/temporaryDirectory.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/SwiftDocTests/Helpers/temporaryFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/SwiftDocTests/Helpers/temporaryFile.swift -------------------------------------------------------------------------------- /Tests/SwiftDocTests/InterfaceTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/SwiftDocTests/InterfaceTypeTests.swift -------------------------------------------------------------------------------- /Tests/SwiftDocTests/NestedTypesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/SwiftDocTests/NestedTypesTests.swift -------------------------------------------------------------------------------- /Tests/SwiftDocTests/PathTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/SwiftDocTests/PathTests.swift -------------------------------------------------------------------------------- /Tests/SwiftDocTests/SourceFileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/Tests/SwiftDocTests/SourceFileTests.swift -------------------------------------------------------------------------------- /WiX/swift-doc.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/WiX/swift-doc.wixproj -------------------------------------------------------------------------------- /WiX/swift-doc.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/WiX/swift-doc.wxs -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/swift-doc/HEAD/action.yml --------------------------------------------------------------------------------