Skip to content

SteadyLabs/GHMarkdownParser

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GHMarkdownParser

GHMarkdownParser is a GitHub Flavored Markdown parser for iOS and based on discount.

How to setup GHMarkdownParser is your project

  • 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 and Header Search Paths
  • go into build phases

    • add the GHMarkdownParser to Target Dependencies
    • add libGHMarkdownParser.a to Link Binary with Libraries

How to use GHMarkdownParser

  • import the GHMarkdownParser header

    #import "GHMarkdownParser.h"
    
  • convert any markdown formatted string into HTML

    NSString *markdown = ...;
    NSString *HTML = markdown.flavoredHTMLStringFromMarkdown;
    

About

A markdown parser for iOS based on discount.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%