Skip to content

Commit 35149c7

Browse files
authored
Using swift for markdown output
1 parent d0dfb23 commit 35149c7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Sources/PublicModules/PADOutputGenerator/MarkdownOutputGenerator.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,7 @@ private extension MarkdownOutputGenerator {
164164

165165
var lines = [title]
166166
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")
167+
lines.append("```swift")
170168
lines.append(description(for: $0))
171169

172170
if !$0.listOfChanges.isEmpty {

0 commit comments

Comments
 (0)