Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ _Comparing `old` to `new`_
---
## SomeModule
#### ❇️ Added
```javascript
```swift
public protocol NewProtocol {
var property: String { get }
}
```
#### 🔀 Changed
```javascript
```swift
// From
open class SomeClass : SomeProtocol, OldProtocol

Expand All @@ -53,6 +53,6 @@ Changes:
*/
```
#### 😶‍🌫️ Removed
```javascript
```swift
public protocol OldProtocol
```
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,7 @@ private extension MarkdownOutputGenerator {

var lines = [title]
changes.sorted { lhs, rhs in description(for: lhs) < description(for: rhs) }.forEach {
// We're using `javascript` as it produces the nicest looking markdown output on Github
// `swift` is available but sometimes produces unexpected syntax highlighting
lines.append("```javascript")
lines.append("```swift")
lines.append(description(for: $0))

if !$0.listOfChanges.isEmpty {
Expand Down
Loading
Loading