Render Markdown text in SwiftUI. It is a preview based on theMarked implementation.
Welcome to downloadDevTutor, a cheat sheet app designed to help developers quickly build excellent applications using SwiftUI.



You can add MarkdownUI to an Xcode project by adding it as a package dependency.
Markdown to your application targetOr add the following toPackage.swift:
.package(url:"https://github.com/jaywcjlove/swiftui-markdown", from:"1.0.0")importSwiftUIimportMarkdownstructContentView:View{@Stateprivatevar mdStr:String=""" ## Hello World Render Markdown text in SwiftUI. """var body:someView{VStack{Markdown(content: $mdStr)TextEditor(text: $mdStr)}}}.markdownStyle()Setting markdown related styles.
Markdown(content: $mdStr).markdownStyle(MarkdownStyle( padding:0, paddingTop:115, paddingBottom:2, paddingLeft:130, paddingRight:5))Markdown(content: $mdStr).markdownStyle(MarkdownStyle(padding:35))
As always, thanks to our amazing contributors!
Made withcontributors.
Licensed under the MIT License.