We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0dfb23 commit 35149c7Copy full SHA for 35149c7
Sources/PublicModules/PADOutputGenerator/MarkdownOutputGenerator.swift
@@ -164,9 +164,7 @@ private extension MarkdownOutputGenerator {
164
165
var lines = [title]
166
changes.sorted { lhs, rhs in description(for: lhs) < description(for: rhs) }.forEach {
167
- // We're using `javascript` as it produces the nicest looking markdown output on Github
168
- // `swift` is available but sometimes produces unexpected syntax highlighting
169
- lines.append("```javascript")
+ lines.append("```swift")
170
lines.append(description(for: $0))
171
172
if !$0.listOfChanges.isEmpty {
0 commit comments