CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

SwiftDown 0.2.2

SwiftDown 0.2.2

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Mar 2017
SwiftSwift Version 3.0.2
SPMSupports SPM

Maintained by Caleb Kleveter.



SwiftDown 0.2.2

  • By
  • Caleb

SwiftDown is a Markdown renderer built in swift.

Usage

SwiftDown is a SwiftPM package, but if you want to add it manually to a project, you can just add the files.

Using SwiftDown is very simple. Just create a renderer, call render, and pass in the Markdown text.

let renderer = MarkdownRenderer()
let html = renderer.render(markdownText)

License

The whole SwiftDown package is under the MIT license agreement.

Attribution

Thanks to @matthewcheok and his tutorial on Writing a Lexer in Swift.