This is a Swift wrapper around MultiMarkdown 5.
This software is exteremly young, untested, and is likely to catch your computer on fire. I haven't even tried running all the functions I've written. Caveat computer.
I've defined a few methods in an extension on String.
let myMarkdown: String = ...
let myDoc: String = myMarkdown.mmdToHTMLDocument()
let myOutput: String = myMarkdown.mmeRenderToFormat(...)
//and othersIt's designed to be very thin. The primary aim is to sheild you from the indelicacies of UnsafeMutablePointer<Int8> when all you want is a String, and other unsavory aspects of C interop.