A post about Swifty Things
Have you ever wanted to write a post about Swifty things but just weren't sure how it should look. In this post we will explore some of what you can accomplish.
Headers
There are so many headers at your disposal. For example:
Header 1
Header 2
Header 3
Header 4
Header 5
I think it goes on forever, but after 3 who are you kidding?
Font Styling
All of the normal bold, italic and other font styles work.
Tables
You can easily make tables and they look good in markdown and plain text!
Centered Header | Left Aligned Header | Right Aligned Header |
---|---|---|
Value | Value | Value |
Code
You can easily provide code blocks with Swift syntax highlight using ```swift
enum PersonalPronoun {
case heHis, sheHers, theyThem
}
struct Person {
let pronoun: PersonalPronoun
let name: String
}