CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ | 
| LangLanguage | CC | 
| License | MIT | 
| ReleasedLast Release | Dec 2014 | 
Maintained by Oliver Letterer.
GHMarkdownParser is a GitHub Flavored Markdown parser for iOS and Mac OS, based on discount.
navigate into GHMarkdownParser directory and initialize the submodules
git submodule init
git submodule update
GHMarkdownParser.xcodeproj into your project-Objc and -all_load
Library Search Paths and Header Search Paths
GHMarkdownParser (for iOS) or GHMarkdownParser Mac (for Mac) to Target Dependencies
libGHMarkdownParser.a (for iOS) or libGHMarkdownParser_Mac.a (for Mac) to Link Binary with Libraries
import the GHMarkdownParser header
#import "GHMarkdownParser.h"convert any markdown formatted string into HTML
NSString *markdown = ...;
NSString *HTML = markdown.flavoredHTMLStringFromMarkdown;Or for greater control:
GHMarkdownParser *parser = [[GHMarkdownParser alloc] init];
parser.options = kGHMarkdownAutoLink; // for example
parser.githubFlavored = YES;
NSString *html = [parser HTMLStringFromMarkdownString:markdownString];