/CommonMark

A #pureswift implementation of the CommonMark specification (https://spec.commonmark.org/)

Primary LanguageSwiftMIT LicenseMIT

CommonMark

Build Status

Summary

CommonMark is a #pureswift implementation of the CommonMark Spec, including an XHTML renderer.

The goal for this implementation is to provide a single, simple interface, summarized thusly:

public extension String {

  /// An XHTML representation of the markdown in the string.
  var renderedMarkdown: String { get }

}