Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Latest commit

 

History

History
41 lines (29 loc) · 547 Bytes

README.md

File metadata and controls

41 lines (29 loc) · 547 Bytes

MDText

MDText is a markdown render library built in and for SwiftUI

Usage:

import MDText
struct ContentView: View {
    var markdown = 
    """
    ** Hello MDText **
    """
    
    var body: some View {
        MDText(markdown: markdown)
    }
}

Features:

  • header
  • link
  • bold
  • hyperlink
  • emphasis

Planned:

del, quote, inline, ul, ol, blockquotes

Installation

Using Xcode 11

menu > file > Swift Packages > Add package dependency...

enter package url: https://github.com/Lambdo-Labs/MDText