jaywcjlove/swiftui-markdown
SwiftUI Markdown
Installation
You can add MarkdownUI to an Xcode project by adding it as a package dependency.
- From the File menu, select Add Packages…
- Enter https://github.com/jaywcjlove/swiftui-markdown the Search or Enter Package URL search field
- Link
Markdownto your application target
Or add the following to Package.swift:
.package(url: "https://github.com/jaywcjlove/swiftui-markdown", from: "1.0.0")Usage
import SwiftUI
import Markdown
struct ContentView: View {
@State private var mdStr: String = """
## Hello World
Render Markdown text in SwiftUI.
"""
var body: some View {
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 ))Configure
<img width="666" alt="image" src="https://user-images.githubusercontent.com/1680273/158029436-cb6eb339-f698-4dcd-9508-acda79683aba.png">
Contributors
As always, thanks to our amazing contributors!
<a href="https://github.com/jaywcjlove/swiftui-markdown/graphs/contributors"> <img src="https://jaywcjlove.github.io/swiftui-markdown/CONTRIBUTORS.svg" /> </a>
Made with contributors.
License
Licensed under the MIT License.
Package Metadata
Repository: jaywcjlove/swiftui-markdown
Default branch: main
README: README.md