anitteb
anitteb

Reputation: 772

Is there a Github markdown language identifier for Swift code?

I'm using https://jbt.github.io/markdown-editor online tool for documentation. I'm wondering if there's an identifier to recognize the swift syntax elements.

Thank you.

Upvotes: 16

Views: 7251

Answers (1)

Mike JS Choi
Mike JS Choi

Reputation: 1151

```swift
struct Animal {
    let nickName : String?
}
```

should do it

Upvotes: 41

Related Questions