Swiftpack.co - jaywcjlove/swiftui-markdown as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by jaywcjlove.
jaywcjlove/swiftui-markdown v1.0.11
Render Markdown text in SwiftUI.
⭐️ 58
🕓 17 weeks ago
iOS macOS
.package(url: "https://github.com/jaywcjlove/swiftui-markdown.git", from: "v1.0.11")

SwiftUI Markdown

Buy me a coffee CI SwiftUI Support

Render Markdown text in SwiftUI. It is a preview based on the Marked implementation.

https://user-images.githubusercontent.com/1680273/159059803-d844769b-36ad-44c1-a296-a657de8d099c.mov

Markdown Package Screenshot

Markdown Package Screenshot

Markdown Package Screenshot

Installation

You can add MarkdownUI to an Xcode project by adding it as a package dependency.

  1. From the File menu, select Add Packages…
  2. Enter https://github.com/jaywcjlove/swiftui-markdown the Search or Enter Package URL search field
  3. Link Markdown to your application target

Or add the following to Package.swift:

.package(url: "https://github.com/jaywcjlove/swiftui-markdown", from: "1.0.0")

Or add the package in Xcode.

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

image

Contributors

As always, thanks to our amazing contributors!

Made with contributors.

License

Licensed under the MIT License.

GitHub

link
Stars: 58
Last commit: 17 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

v1.0.11
17 weeks ago

Buy me a coffee

Documentation v1.0.11: https://raw.githack.com/jaywcjlove/markdown/ed0ae7c/index.html Comparing Changes: https://github.com/jaywcjlove/swiftui-markdown/compare/v1.0.10...v1.0.11

  • 🐞 fix: fix colorScheme update issue. c7e1dd8 @jaywcjlove

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics