GHMarkdownParser is a GitHub Flavored Markdown parser for iOS and based on discount.
-
add GHMarkdownParser as a submodule to your project
-
navigate into GHMarkdownParser directory and initialize the submodules
git submodule init git submodule update
-
drag and drop the
GHMarkdownParser.xcodeproj
into your project -
select your project target -> build settings
- fill Other Linker Flags with
-Objc
and-all_load
- add the path of GHMarkdownParser to
Library Search Paths
andHeader Search Paths
- fill Other Linker Flags with
-
go into build phases
- add the
GHMarkdownParser
to Target Dependencies - add
libGHMarkdownParser.a
to Link Binary with Libraries
- add the
-
import the GHMarkdownParser header
#import "GHMarkdownParser.h"
-
convert any markdown formatted string into HTML
NSString *markdown = ...; NSString *HTML = markdown.flavoredHTMLStringFromMarkdown;