Skip to content

Instantly share code, notes, and snippets.

@jhowlin
Created June 30, 2022 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhowlin/a26b8320ba9eb856ec41845f8b610bd5 to your computer and use it in GitHub Desktop.
Save jhowlin/a26b8320ba9eb856ec41845f8b610bd5 to your computer and use it in GitHub Desktop.
import Foundation
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Text("Regular")
Text("*Italics*")
Text("**Bold**")
Text("~Strikethrough~")
Text("`Code`")
Text("[Link](https://apple.com)")
Text("***[They](https://apple.com) ~are~ `combinable`***")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment