Markdown in SwiftUI v3
Published June 9, 2021
SwiftUI version 3 (coming in iOS 15 & macOS Monterey) has brought with it many nice features, including the ability to easily work with Markdown. Text elements now support Markdown natively, like so:
VStack {
Text("Regular text")
Text("*Italic text*")
Text("**Bold text**")
Text("~~Strikethrough text~~")
Text("[Link](apple.com) text")
}