[
  {
    "path": ".gitattributes",
    "content": "*.pbxproj -crlf -diff -merge\n"
  },
  {
    "path": ".gitignore",
    "content": "# xcode noise\n*.mode1v3\n*.pbxuser\n*.perspective\n*.perspectivev3\n*.pyc\n*~.nib/\nbuild/\nxcuserdata/\nxcuserdata/*\n*.xcuserdatad/\n\n# Textmate - if you build your xcode projects with it\n*.tm_build_errors\n\n# old skool\n.svn\n\n# osx noise\n.DS_Store\nprofile\n"
  },
  {
    "path": ".gitmodules",
    "content": "[submodule \"discount\"]\n\tpath = discount\n\turl = https://github.com/OliverLetterer/discount.git\n"
  },
  {
    "path": "GHMarkdownParser/GHMarkdownParser/Foundation and Class Additions/NSString+GHMarkdownParser.h",
    "content": "//\n//  NSString+GHMarkdownParser.h\n//  GHMarkdownParser\n//\n//  Created by Oliver Letterer on 01.08.11.\n//  Copyright 2011 Home. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n\n\n@interface NSString (GHMarkdownParser)\n\n@property (nonatomic, readonly) NSString *HTMLStringFromMarkdown;\n@property (nonatomic, readonly) NSString *flavoredHTMLStringFromMarkdown;\n\n@end\n"
  },
  {
    "path": "GHMarkdownParser/GHMarkdownParser/Foundation and Class Additions/NSString+GHMarkdownParser.m",
    "content": "//\n//  NSString+GHMarkdownParser.m\n//  GHMarkdownParser\n//\n//  Created by Oliver Letterer on 01.08.11.\n//  Copyright 2011 Home. All rights reserved.\n//\n\n#import \"NSString+GHMarkdownParser.h\"\n#import <GHMarkdownParser/GHMarkdownParser.h>\n\n@implementation NSString (GHMarkdownParser)\n\n- (NSString *)HTMLStringFromMarkdown {\n    return [GHMarkdownParser HTMLStringFromMarkdownString:self];\n}\n\n- (NSString *)flavoredHTMLStringFromMarkdown {\n    return [GHMarkdownParser flavoredHTMLStringFromMarkdownString:self];\n}\n\n@end\n"
  },
  {
    "path": "GHMarkdownParser/GHMarkdownParser/GHMarkdownParser-Prefix.pch",
    "content": "//\n// Prefix header for all source files of the 'GHMarkdownParser' target in the 'GHMarkdownParser' project\n//\n\n#ifdef __OBJC__\n    #import <Foundation/Foundation.h>\n#endif\n\n\n\n\n\n# define ALog(format, ...) NSLog((@\"%s [%d] \" format), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);\n\n# ifdef DEBUG\n#  define DLog(format, ...) ALog(format, ##__VA_ARGS__);\n# else  \n#   define DLog(...)  \n# endif\n"
  },
  {
    "path": "GHMarkdownParser/GHMarkdownParser/GHMarkdownParser.h",
    "content": "//\n//  GHMarkdownParser.h\n//  GHMarkdownParser\n//\n//  Created by Oliver Letterer on 01.08.11.\n//  Copyright 2011 Home. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n#import <GHMarkdownParser/NSString+GHMarkdownParser.h>\n\n\n/** Option flags for Markdown parsing. */\ntypedef enum {\n    kGHMarkdownNoLinks          = 0x00000001,   //< Don't allow links at all\n    kGHMarkdownNoImages         = 0x00000002,   //< Don't allow images\n    kGHMarkdownNoSmartQuotes    = 0x00000004,   //< Don't convert ASCII quotes\n    kGHMarkdownNoHTMLTags       = 0x00000008,   //< Don't allow any HTML tags in the input\n    kGHMarkdownStrict           = 0x00000010,   //< Don't allow emphasis in mid-word\n    kGHMarkdownAutoLink         = 0x00004000,   //< Convert URLs in the input to links\n    kGHMarkdownSafeLinks        = 0x00008000    //< Only allow http:, https:, ftp: links\n    // These MUST match the values of the \"MKD_...\" constants defined in mkdio.h!\n    // FYI, there are more of these implemented by Discount that aren't exposed here.\n} GHMarkdownOptions;\n\n\n\n/** Parses human-readable input in the Markdown format and converts it to HTML. */\n@interface GHMarkdownParser : NSObject\n\n/** Option flags for Markdown parsing. By default these are all off. */\n@property (nonatomic, assign) GHMarkdownOptions options;\n\n/** If set, Github-Flavored Markdown extensions are supported. */\n@property (nonatomic, assign) BOOL githubFlavored;\n\n/** If set, relative URLs will be prefixed with this absolute URL. */\n@property (nonatomic, strong) NSURL *baseURL;\n\n\n/** Converts a Markdown string to HTML using this parser instance's settings. */\n- (NSString *)HTMLStringFromMarkdownString:(NSString *)markdownString;\n\n\n/** Convenience method that converts Markdown with the default settings. */\n+ (NSString *)HTMLStringFromMarkdownString:(NSString *)markdownString;\n\n/** Convenience method that converts Github-flavored Markdown with otherwise-default settings. */\n+ (NSString *)flavoredHTMLStringFromMarkdownString:(NSString *)markdownString;\n\n@end\n"
  },
  {
    "path": "GHMarkdownParser/GHMarkdownParser/GHMarkdownParser.m",
    "content": "//\n//  GHMarkdownParser.m\n//  GHMarkdownParser\n//\n//  Created by Oliver Letterer on 01.08.11.\n//  Copyright 2011 Home. All rights reserved.\n//\n\n#import \"GHMarkdownParser.h\"\n#import \"markdown.h\"\n\n#if !__has_feature(objc_arc)\n#error This project requires arc\n#endif\n\n// Declared in mkdio.h, but we can't include that after including markdown.\nextern void mkd_with_html5_tags(void);\n\n\n\n@implementation GHMarkdownParser\n\n+ (void)initialize {\n    // Enable recognition of HTML5 tags\n    mkd_with_html5_tags();\n}\n\n+ (NSString *)HTMLStringFromMarkdownString:(NSString *)markdownString {\n    GHMarkdownParser *parser = [[self alloc] init];\n    NSString *html = [parser HTMLStringFromMarkdownString:markdownString];\n    return html;\n}\n\n\n+ (NSString *)flavoredHTMLStringFromMarkdownString:(NSString *)markdownString {\n    GHMarkdownParser *parser = [[self alloc] init];\n    parser.githubFlavored = YES;\n    NSString *html = [parser HTMLStringFromMarkdownString:markdownString];\n    return html;\n}\n\n\n- (NSString *)HTMLStringFromMarkdownString:(NSString *)markdownString {\n    NSData *mdData = [markdownString dataUsingEncoding:NSUTF8StringEncoding];\n    Document *document;\n\n    if (_githubFlavored) {\n        document = gfm_string(mdData.bytes, (int)mdData.length, _options);\n    } else {\n        document = mkd_string(mdData.bytes, (int)mdData.length, _options);\n    }\n\n    if (!document) {\n        return nil;\n    }\n\n    if (_baseURL) {\n        mkd_basename(document, (char*)_baseURL.absoluteString.UTF8String);\n    }\n\n    NSString *html = nil;\n    if (mkd_compile(document, _options)) {\n        char *HTMLUTF8 = NULL;\n        int length = mkd_document(document, &HTMLUTF8);\n        if (length >= 0) {\n            html = [[NSString alloc] initWithBytes:HTMLUTF8\n                                            length:length\n                                          encoding:NSUTF8StringEncoding];\n        }\n        mkd_cleanup(document);\n    }\n\n    return html;\n}\n\n@end\n"
  },
  {
    "path": "GHMarkdownParser/GHMarkdownParser.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t27051FB318CD052A0050AC52 /* github_flavoured.c in Sources */ = {isa = PBXBuildFile; fileRef = 27051FB118CD052A0050AC52 /* github_flavoured.c */; };\n\t\t27051FB618CD05AD0050AC52 /* basename.c in Sources */ = {isa = PBXBuildFile; fileRef = 27051FB418CD05AD0050AC52 /* basename.c */; };\n\t\t279A7E8A18A89AB8007AA2CC /* GHMarkdownParser.m in Sources */ = {isa = PBXBuildFile; fileRef = A7C525FB13E6FE1A0003EEE5 /* GHMarkdownParser.m */; };\n\t\t279A7E8B18A89AB8007AA2CC /* mkdio.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5260313E700910003EEE5 /* mkdio.c */; };\n\t\t279A7E8C18A89AB8007AA2CC /* markdown.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5260713E700A00003EEE5 /* markdown.c */; };\n\t\t279A7E8D18A89AB8007AA2CC /* generate.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5260B13E700AD0003EEE5 /* generate.c */; };\n\t\t279A7E8E18A89AB8007AA2CC /* resource.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5260D13E700B80003EEE5 /* resource.c */; };\n\t\t279A7E8F18A89AB8007AA2CC /* xml.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5260F13E700C20003EEE5 /* xml.c */; };\n\t\t279A7E9018A89AB8007AA2CC /* Csio.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5261113E700CB0003EEE5 /* Csio.c */; };\n\t\t279A7E9118A89AB8007AA2CC /* emmatch.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5261313E700D50003EEE5 /* emmatch.c */; };\n\t\t279A7E9218A89AB8007AA2CC /* html5.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5261513E700DE0003EEE5 /* html5.c */; };\n\t\t279A7E9318A89AB8007AA2CC /* tags.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5261713E700E80003EEE5 /* tags.c */; };\n\t\t279A7E9418A89AB8007AA2CC /* setup.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5261D13E7012B0003EEE5 /* setup.c */; };\n\t\t279A7E9518A89AB8007AA2CC /* NSString+GHMarkdownParser.m in Sources */ = {isa = PBXBuildFile; fileRef = A744F57D13E737DF0038C189 /* NSString+GHMarkdownParser.m */; };\n\t\t279A7E9718A89AB8007AA2CC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7C525F513E6FE1A0003EEE5 /* Foundation.framework */; };\n\t\t279A7E9918A89AB8007AA2CC /* mkdio.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C5260413E700910003EEE5 /* mkdio.h */; };\n\t\t279A7E9A18A89AB8007AA2CC /* markdown.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C5260813E700A00003EEE5 /* markdown.h */; };\n\t\t279A7E9B18A89AB8007AA2CC /* tags.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C5261B13E7010A0003EEE5 /* tags.h */; };\n\t\t279A7E9C18A89AB8007AA2CC /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C5261F13E7013E0003EEE5 /* config.h */; };\n\t\t279A7E9D18A89AB8007AA2CC /* NSString+GHMarkdownParser.h in Headers */ = {isa = PBXBuildFile; fileRef = A744F57C13E737DF0038C189 /* NSString+GHMarkdownParser.h */; };\n\t\tAEF02AC01D80BE83005AFFEA /* GHMarkdownParser.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C525FA13E6FE1A0003EEE5 /* GHMarkdownParser.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tAEF02AC11D80BEB0005AFFEA /* NSString+GHMarkdownParser.h in Headers */ = {isa = PBXBuildFile; fileRef = A744F57C13E737DF0038C189 /* NSString+GHMarkdownParser.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tAEF02AC21D80BEB3005AFFEA /* NSString+GHMarkdownParser.m in Sources */ = {isa = PBXBuildFile; fileRef = A744F57D13E737DF0038C189 /* NSString+GHMarkdownParser.m */; };\n\t\tAEF02AC31D80BF1C005AFFEA /* GHMarkdownParser.m in Sources */ = {isa = PBXBuildFile; fileRef = A7C525FB13E6FE1A0003EEE5 /* GHMarkdownParser.m */; };\n\t\tAEF02AC41D80BFBC005AFFEA /* blocktags in Resources */ = {isa = PBXBuildFile; fileRef = A744F55A13E728CD0038C189 /* blocktags */; };\n\t\tAEF02AC51D80BFBC005AFFEA /* basename.c in Sources */ = {isa = PBXBuildFile; fileRef = 27051FB418CD05AD0050AC52 /* basename.c */; };\n\t\tAEF02AC61D80BFBC005AFFEA /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C5261F13E7013E0003EEE5 /* config.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tAEF02AC71D80BFBC005AFFEA /* Csio.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5261113E700CB0003EEE5 /* Csio.c */; };\n\t\tAEF02AC81D80BFBC005AFFEA /* emmatch.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5261313E700D50003EEE5 /* emmatch.c */; };\n\t\tAEF02AC91D80BFBC005AFFEA /* generate.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5260B13E700AD0003EEE5 /* generate.c */; };\n\t\tAEF02ACA1D80BFBC005AFFEA /* github_flavoured.c in Sources */ = {isa = PBXBuildFile; fileRef = 27051FB118CD052A0050AC52 /* github_flavoured.c */; };\n\t\tAEF02ACB1D80BFBC005AFFEA /* html5.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5261513E700DE0003EEE5 /* html5.c */; };\n\t\tAEF02ACC1D80BFBC005AFFEA /* markdown.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5260713E700A00003EEE5 /* markdown.c */; };\n\t\tAEF02ACD1D80BFBC005AFFEA /* markdown.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C5260813E700A00003EEE5 /* markdown.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tAEF02ACE1D80BFBC005AFFEA /* mkdio.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5260313E700910003EEE5 /* mkdio.c */; };\n\t\tAEF02ACF1D80BFBC005AFFEA /* mkdio.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C5260413E700910003EEE5 /* mkdio.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tAEF02AD01D80BFBC005AFFEA /* resource.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5260D13E700B80003EEE5 /* resource.c */; };\n\t\tAEF02AD11D80BFBC005AFFEA /* setup.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5261D13E7012B0003EEE5 /* setup.c */; };\n\t\tAEF02AD21D80BFBC005AFFEA /* tags.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5261713E700E80003EEE5 /* tags.c */; };\n\t\tAEF02AD31D80BFBC005AFFEA /* tags.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C5261B13E7010A0003EEE5 /* tags.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tAEF02AD41D80BFBC005AFFEA /* xml.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C5260F13E700C20003EEE5 /* xml.c */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXFileReference section */\n\t\t27051FB118CD052A0050AC52 /* github_flavoured.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; name = github_flavoured.c; path = ../../discount/github_flavoured.c; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\t27051FB418CD05AD0050AC52 /* basename.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; name = basename.c; path = ../../discount/basename.c; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\t279A7EA118A89AB8007AA2CC /* libGHMarkdownParser_Mac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libGHMarkdownParser_Mac.a; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tA744F55A13E728CD0038C189 /* blocktags */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = blocktags; path = ../../discount/blocktags; sourceTree = \"<group>\"; };\n\t\tA744F57C13E737DF0038C189 /* NSString+GHMarkdownParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = \"NSString+GHMarkdownParser.h\"; sourceTree = \"<group>\"; };\n\t\tA744F57D13E737DF0038C189 /* NSString+GHMarkdownParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = \"NSString+GHMarkdownParser.m\"; sourceTree = \"<group>\"; };\n\t\tA7C525F513E6FE1A0003EEE5 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };\n\t\tA7C525F913E6FE1A0003EEE5 /* GHMarkdownParser-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = \"GHMarkdownParser-Prefix.pch\"; sourceTree = \"<group>\"; };\n\t\tA7C525FA13E6FE1A0003EEE5 /* GHMarkdownParser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GHMarkdownParser.h; sourceTree = \"<group>\"; };\n\t\tA7C525FB13E6FE1A0003EEE5 /* GHMarkdownParser.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GHMarkdownParser.m; sourceTree = \"<group>\"; };\n\t\tA7C5260313E700910003EEE5 /* mkdio.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; name = mkdio.c; path = ../../discount/mkdio.c; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5260413E700910003EEE5 /* mkdio.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.h; name = mkdio.h; path = ../../discount/mkdio.h; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5260713E700A00003EEE5 /* markdown.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; name = markdown.c; path = ../../discount/markdown.c; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5260813E700A00003EEE5 /* markdown.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.h; name = markdown.h; path = ../../discount/markdown.h; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5260B13E700AD0003EEE5 /* generate.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; name = generate.c; path = ../../discount/generate.c; sourceTree = \"<group>\"; tabWidth = 8; usesTabs = 1; };\n\t\tA7C5260D13E700B80003EEE5 /* resource.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; name = resource.c; path = ../../discount/resource.c; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5260F13E700C20003EEE5 /* xml.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; name = xml.c; path = ../../discount/xml.c; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5261113E700CB0003EEE5 /* Csio.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; name = Csio.c; path = ../../discount/Csio.c; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5261313E700D50003EEE5 /* emmatch.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; name = emmatch.c; path = ../../discount/emmatch.c; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5261513E700DE0003EEE5 /* html5.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; name = html5.c; path = ../../discount/html5.c; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5261713E700E80003EEE5 /* tags.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; name = tags.c; path = ../../discount/tags.c; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5261B13E7010A0003EEE5 /* tags.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.h; name = tags.h; path = ../../discount/tags.h; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5261D13E7012B0003EEE5 /* setup.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; name = setup.c; path = ../../discount/setup.c; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tA7C5261F13E7013E0003EEE5 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.h; name = config.h; path = ../../discount/config.h; sourceTree = \"<group>\"; tabWidth = 2; usesTabs = 1; };\n\t\tAE5D620A1D806FC1004CA05D /* GHMarkdownParser.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GHMarkdownParser.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tAE5D620E1D806FC1004CA05D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = GHMarkdownParser2/Info.plist; sourceTree = SOURCE_ROOT; };\n\t\tAEF02ABF1D80BDF5005AFFEA /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = \"sourcecode.module-map\"; name = module.modulemap; path = ../module.modulemap; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t279A7E9618A89AB8007AA2CC /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t279A7E9718A89AB8007AA2CC /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAE5D62061D806FC1004CA05D /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\tA744F57A13E737880038C189 /* Foundation and Class Additions */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tA744F57C13E737DF0038C189 /* NSString+GHMarkdownParser.h */,\n\t\t\t\tA744F57D13E737DF0038C189 /* NSString+GHMarkdownParser.m */,\n\t\t\t);\n\t\t\tpath = \"Foundation and Class Additions\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tA7C525E713E6FE1A0003EEE5 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tA7C525F713E6FE1A0003EEE5 /* GHMarkdownParser */,\n\t\t\t\tA7C525F413E6FE1A0003EEE5 /* Frameworks */,\n\t\t\t\tA7C525F313E6FE1A0003EEE5 /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tA7C525F313E6FE1A0003EEE5 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t279A7EA118A89AB8007AA2CC /* libGHMarkdownParser_Mac.a */,\n\t\t\t\tAE5D620A1D806FC1004CA05D /* GHMarkdownParser.framework */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tA7C525F413E6FE1A0003EEE5 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tA7C525F513E6FE1A0003EEE5 /* Foundation.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tA7C525F713E6FE1A0003EEE5 /* GHMarkdownParser */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tAEF02ABF1D80BDF5005AFFEA /* module.modulemap */,\n\t\t\t\tAE5D620E1D806FC1004CA05D /* Info.plist */,\n\t\t\t\tA744F57A13E737880038C189 /* Foundation and Class Additions */,\n\t\t\t\tA7C5260213E700730003EEE5 /* discount */,\n\t\t\t\tA7C525FA13E6FE1A0003EEE5 /* GHMarkdownParser.h */,\n\t\t\t\tA7C525FB13E6FE1A0003EEE5 /* GHMarkdownParser.m */,\n\t\t\t\tA7C525F813E6FE1A0003EEE5 /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = GHMarkdownParser;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tA7C525F813E6FE1A0003EEE5 /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tA7C525F913E6FE1A0003EEE5 /* GHMarkdownParser-Prefix.pch */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tA7C5260213E700730003EEE5 /* discount */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tA744F55A13E728CD0038C189 /* blocktags */,\n\t\t\t\t27051FB418CD05AD0050AC52 /* basename.c */,\n\t\t\t\tA7C5261F13E7013E0003EEE5 /* config.h */,\n\t\t\t\tA7C5261113E700CB0003EEE5 /* Csio.c */,\n\t\t\t\tA7C5261313E700D50003EEE5 /* emmatch.c */,\n\t\t\t\tA7C5260B13E700AD0003EEE5 /* generate.c */,\n\t\t\t\t27051FB118CD052A0050AC52 /* github_flavoured.c */,\n\t\t\t\tA7C5261513E700DE0003EEE5 /* html5.c */,\n\t\t\t\tA7C5260713E700A00003EEE5 /* markdown.c */,\n\t\t\t\tA7C5260813E700A00003EEE5 /* markdown.h */,\n\t\t\t\tA7C5260313E700910003EEE5 /* mkdio.c */,\n\t\t\t\tA7C5260413E700910003EEE5 /* mkdio.h */,\n\t\t\t\tA7C5260D13E700B80003EEE5 /* resource.c */,\n\t\t\t\tA7C5261D13E7012B0003EEE5 /* setup.c */,\n\t\t\t\tA7C5261713E700E80003EEE5 /* tags.c */,\n\t\t\t\tA7C5261B13E7010A0003EEE5 /* tags.h */,\n\t\t\t\tA7C5260F13E700C20003EEE5 /* xml.c */,\n\t\t\t);\n\t\t\tname = discount;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXHeadersBuildPhase section */\n\t\t279A7E9818A89AB8007AA2CC /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t279A7E9918A89AB8007AA2CC /* mkdio.h in Headers */,\n\t\t\t\t279A7E9A18A89AB8007AA2CC /* markdown.h in Headers */,\n\t\t\t\t279A7E9B18A89AB8007AA2CC /* tags.h in Headers */,\n\t\t\t\t279A7E9C18A89AB8007AA2CC /* config.h in Headers */,\n\t\t\t\t279A7E9D18A89AB8007AA2CC /* NSString+GHMarkdownParser.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAE5D62071D806FC1004CA05D /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAEF02AC01D80BE83005AFFEA /* GHMarkdownParser.h in Headers */,\n\t\t\t\tAEF02ACF1D80BFBC005AFFEA /* mkdio.h in Headers */,\n\t\t\t\tAEF02AD31D80BFBC005AFFEA /* tags.h in Headers */,\n\t\t\t\tAEF02AC61D80BFBC005AFFEA /* config.h in Headers */,\n\t\t\t\tAEF02ACD1D80BFBC005AFFEA /* markdown.h in Headers */,\n\t\t\t\tAEF02AC11D80BEB0005AFFEA /* NSString+GHMarkdownParser.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXHeadersBuildPhase section */\n\n/* Begin PBXNativeTarget section */\n\t\t279A7E8818A89AB8007AA2CC /* GHMarkdownParser Mac */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 279A7E9E18A89AB8007AA2CC /* Build configuration list for PBXNativeTarget \"GHMarkdownParser Mac\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t279A7E8918A89AB8007AA2CC /* Sources */,\n\t\t\t\t279A7E9618A89AB8007AA2CC /* Frameworks */,\n\t\t\t\t279A7E9818A89AB8007AA2CC /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"GHMarkdownParser Mac\";\n\t\t\tproductName = GHMarkdownParser;\n\t\t\tproductReference = 279A7EA118A89AB8007AA2CC /* libGHMarkdownParser_Mac.a */;\n\t\t\tproductType = \"com.apple.product-type.library.static\";\n\t\t};\n\t\tAE5D62091D806FC1004CA05D /* GHMarkdownParser */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = AE5D62111D806FC1004CA05D /* Build configuration list for PBXNativeTarget \"GHMarkdownParser\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tAE5D62051D806FC1004CA05D /* Sources */,\n\t\t\t\tAE5D62061D806FC1004CA05D /* Frameworks */,\n\t\t\t\tAE5D62071D806FC1004CA05D /* Headers */,\n\t\t\t\tAE5D62081D806FC1004CA05D /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = GHMarkdownParser;\n\t\t\tproductName = GHMarkdownParser2;\n\t\t\tproductReference = AE5D620A1D806FC1004CA05D /* GHMarkdownParser.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\tA7C525E913E6FE1A0003EEE5 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastUpgradeCheck = 0510;\n\t\t\t\tORGANIZATIONNAME = Home;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\tAE5D62091D806FC1004CA05D = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 7.3.1;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = A7C525EC13E6FE1A0003EEE5 /* Build configuration list for PBXProject \"GHMarkdownParser\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t);\n\t\t\tmainGroup = A7C525E713E6FE1A0003EEE5;\n\t\t\tproductRefGroup = A7C525F313E6FE1A0003EEE5 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t279A7E8818A89AB8007AA2CC /* GHMarkdownParser Mac */,\n\t\t\t\tAE5D62091D806FC1004CA05D /* GHMarkdownParser */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\tAE5D62081D806FC1004CA05D /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAEF02AC41D80BFBC005AFFEA /* blocktags in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t279A7E8918A89AB8007AA2CC /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t279A7E8A18A89AB8007AA2CC /* GHMarkdownParser.m in Sources */,\n\t\t\t\t27051FB618CD05AD0050AC52 /* basename.c in Sources */,\n\t\t\t\t27051FB318CD052A0050AC52 /* github_flavoured.c in Sources */,\n\t\t\t\t279A7E8B18A89AB8007AA2CC /* mkdio.c in Sources */,\n\t\t\t\t279A7E8C18A89AB8007AA2CC /* markdown.c in Sources */,\n\t\t\t\t279A7E8D18A89AB8007AA2CC /* generate.c in Sources */,\n\t\t\t\t279A7E8E18A89AB8007AA2CC /* resource.c in Sources */,\n\t\t\t\t279A7E8F18A89AB8007AA2CC /* xml.c in Sources */,\n\t\t\t\t279A7E9018A89AB8007AA2CC /* Csio.c in Sources */,\n\t\t\t\t279A7E9118A89AB8007AA2CC /* emmatch.c in Sources */,\n\t\t\t\t279A7E9218A89AB8007AA2CC /* html5.c in Sources */,\n\t\t\t\t279A7E9318A89AB8007AA2CC /* tags.c in Sources */,\n\t\t\t\t279A7E9418A89AB8007AA2CC /* setup.c in Sources */,\n\t\t\t\t279A7E9518A89AB8007AA2CC /* NSString+GHMarkdownParser.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAE5D62051D806FC1004CA05D /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAEF02AD21D80BFBC005AFFEA /* tags.c in Sources */,\n\t\t\t\tAEF02ACE1D80BFBC005AFFEA /* mkdio.c in Sources */,\n\t\t\t\tAEF02AC51D80BFBC005AFFEA /* basename.c in Sources */,\n\t\t\t\tAEF02AD41D80BFBC005AFFEA /* xml.c in Sources */,\n\t\t\t\tAEF02AD01D80BFBC005AFFEA /* resource.c in Sources */,\n\t\t\t\tAEF02ACC1D80BFBC005AFFEA /* markdown.c in Sources */,\n\t\t\t\tAEF02AC71D80BFBC005AFFEA /* Csio.c in Sources */,\n\t\t\t\tAEF02ACB1D80BFBC005AFFEA /* html5.c in Sources */,\n\t\t\t\tAEF02ACA1D80BFBC005AFFEA /* github_flavoured.c in Sources */,\n\t\t\t\tAEF02AC81D80BFBC005AFFEA /* emmatch.c in Sources */,\n\t\t\t\tAEF02AC31D80BF1C005AFFEA /* GHMarkdownParser.m in Sources */,\n\t\t\t\tAEF02AD11D80BFBC005AFFEA /* setup.c in Sources */,\n\t\t\t\tAEF02AC91D80BFBC005AFFEA /* generate.c in Sources */,\n\t\t\t\tAEF02AC21D80BEB3005AFFEA /* NSString+GHMarkdownParser.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin XCBuildConfiguration section */\n\t\t279A7E9F18A89AB8007AA2CC /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tDSTROOT = /tmp/GHMarkdownParser.dst;\n\t\t\t\tGCC_PRECOMPILE_PREFIX_HEADER = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"GHMarkdownParser/GHMarkdownParser-Prefix.pch\";\n\t\t\t\tOTHER_LDFLAGS = \"-ObjC\";\n\t\t\t\tPRODUCT_NAME = GHMarkdownParser_Mac;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t279A7EA018A89AB8007AA2CC /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tDSTROOT = /tmp/GHMarkdownParser.dst;\n\t\t\t\tGCC_PRECOMPILE_PREFIX_HEADER = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"GHMarkdownParser/GHMarkdownParser-Prefix.pch\";\n\t\t\t\tOTHER_LDFLAGS = \"-ObjC\";\n\t\t\t\tPRODUCT_NAME = GHMarkdownParser_Mac;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tA7C525FD13E6FE1A0003EEE5 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_SYMBOLS_PRIVATE_EXTERN = NO;\n\t\t\t\tGCC_VERSION = com.apple.compilers.llvm.clang.1_0;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES;\n\t\t\t\tGCC_WARN_MISSING_PARENTHESES = NO;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tHEADER_SEARCH_PATHS = \"../discount/**\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 5.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"\";\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tA7C525FE13E6FE1A0003EEE5 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCOPY_PHASE_STRIP = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_VERSION = com.apple.compilers.llvm.clang.1_0;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES;\n\t\t\t\tGCC_WARN_MISSING_PARENTHESES = NO;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tHEADER_SEARCH_PATHS = \"../discount/**\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 5.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"\";\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tAE5D620F1D806FC1004CA05D /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tARCHS = \"$(ARCHS_STANDARD)\";\n\t\t\t\tCLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tINFOPLIST_FILE = GHMarkdownParser2/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = module.modulemap;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = NO;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = pivotaltracker.GHMarkdownParser;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALID_ARCHS = \"arm64 armv7 armv7s x86_64\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t\tSUPPORTED_PLATFORMS = \"iphonesimulator iphoneos\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tAE5D62101D806FC1004CA05D /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tARCHS = \"$(ARCHS_STANDARD)\";\n\t\t\t\tCLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tINFOPLIST_FILE = GHMarkdownParser2/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = module.modulemap;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tONLY_ACTIVE_ARCH = NO;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = pivotaltracker.GHMarkdownParser;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALID_ARCHS = \"arm64 armv7 armv7s x86_64\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t\tSUPPORTED_PLATFORMS = \"iphonesimulator iphoneos\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t279A7E9E18A89AB8007AA2CC /* Build configuration list for PBXNativeTarget \"GHMarkdownParser Mac\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t279A7E9F18A89AB8007AA2CC /* Debug */,\n\t\t\t\t279A7EA018A89AB8007AA2CC /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tA7C525EC13E6FE1A0003EEE5 /* Build configuration list for PBXProject \"GHMarkdownParser\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tA7C525FD13E6FE1A0003EEE5 /* Debug */,\n\t\t\t\tA7C525FE13E6FE1A0003EEE5 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tAE5D62111D806FC1004CA05D /* Build configuration list for PBXNativeTarget \"GHMarkdownParser\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tAE5D620F1D806FC1004CA05D /* Debug */,\n\t\t\t\tAE5D62101D806FC1004CA05D /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = A7C525E913E6FE1A0003EEE5 /* Project object */;\n}\n"
  },
  {
    "path": "GHMarkdownParser/GHMarkdownParser.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:GHMarkdownParser.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "GHMarkdownParser/GHMarkdownParser.xcodeproj/project.xcworkspace/xcshareddata/GHMarkdownParser.xccheckout",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDESourceControlProjectFavoriteDictionaryKey</key>\n\t<false/>\n\t<key>IDESourceControlProjectIdentifier</key>\n\t<string>AC14F571-B174-4CFD-86A8-53F8647B99B6</string>\n\t<key>IDESourceControlProjectName</key>\n\t<string>GHMarkdownParser</string>\n\t<key>IDESourceControlProjectOriginsDictionary</key>\n\t<dict>\n\t\t<key>193DF35C-ABEF-4A63-8DE8-FEEEE3E58386</key>\n\t\t<string>ssh://github.com/OliverLetterer/discount.git</string>\n\t\t<key>DCBE6C60-F59F-46B8-B293-E3435415C037</key>\n\t\t<string>ssh://github.com/OliverLetterer/GHMarkdownParser.git</string>\n\t</dict>\n\t<key>IDESourceControlProjectPath</key>\n\t<string>GHMarkdownParser/GHMarkdownParser.xcodeproj/project.xcworkspace</string>\n\t<key>IDESourceControlProjectRelativeInstallPathDictionary</key>\n\t<dict>\n\t\t<key>193DF35C-ABEF-4A63-8DE8-FEEEE3E58386</key>\n\t\t<string>../../../discount</string>\n\t\t<key>DCBE6C60-F59F-46B8-B293-E3435415C037</key>\n\t\t<string>../../..</string>\n\t</dict>\n\t<key>IDESourceControlProjectURL</key>\n\t<string>ssh://github.com/OliverLetterer/GHMarkdownParser.git</string>\n\t<key>IDESourceControlProjectVersion</key>\n\t<integer>110</integer>\n\t<key>IDESourceControlProjectWCCIdentifier</key>\n\t<string>DCBE6C60-F59F-46B8-B293-E3435415C037</string>\n\t<key>IDESourceControlProjectWCConfigurations</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>IDESourceControlRepositoryExtensionIdentifierKey</key>\n\t\t\t<string>public.vcs.git</string>\n\t\t\t<key>IDESourceControlWCCIdentifierKey</key>\n\t\t\t<string>193DF35C-ABEF-4A63-8DE8-FEEEE3E58386</string>\n\t\t\t<key>IDESourceControlWCCName</key>\n\t\t\t<string>discount</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>IDESourceControlRepositoryExtensionIdentifierKey</key>\n\t\t\t<string>public.vcs.git</string>\n\t\t\t<key>IDESourceControlWCCIdentifierKey</key>\n\t\t\t<string>DCBE6C60-F59F-46B8-B293-E3435415C037</string>\n\t\t\t<key>IDESourceControlWCCName</key>\n\t\t\t<string>GHMarkdownParser</string>\n\t\t</dict>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "GHMarkdownParser/GHMarkdownParser.xcodeproj/xcshareddata/xcschemes/GHMarkdownParser.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0730\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"AE5D62091D806FC1004CA05D\"\n               BuildableName = \"GHMarkdownParser.framework\"\n               BlueprintName = \"GHMarkdownParser\"\n               ReferencedContainer = \"container:GHMarkdownParser.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n      </Testables>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"AE5D62091D806FC1004CA05D\"\n            BuildableName = \"GHMarkdownParser.framework\"\n            BlueprintName = \"GHMarkdownParser\"\n            ReferencedContainer = \"container:GHMarkdownParser.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"AE5D62091D806FC1004CA05D\"\n            BuildableName = \"GHMarkdownParser.framework\"\n            BlueprintName = \"GHMarkdownParser\"\n            ReferencedContainer = \"container:GHMarkdownParser.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "GHMarkdownParser/GHMarkdownParser2/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>FMWK</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>$(CURRENT_PROJECT_VERSION)</string>\n\t<key>NSPrincipalClass</key>\n\t<string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "GHMarkdownParser/module.modulemap",
    "content": "framework module GHMarkdownParser {\n  header \"GHMarkdownParser.h\"\n}"
  },
  {
    "path": "GHMarkdownParser.podspec",
    "content": "Pod::Spec.new do |s|\n  s.name     = 'GHMarkdownParser'\n  s.version  = '0.1.2'\n  s.license  = 'MIT'\n  s.summary  = 'A GitHub Flavored Markdown parser for iOS and Mac OS, based on discount.'\n  s.homepage = 'https://github.com/OliverLetterer/GHMarkdownParser'\n  s.author   = { 'Oliver Letterer' => 'oliver.letterer@gmail.com' }\n  s.source   = { :git => 'https://github.com/OliverLetterer/GHMarkdownParser.git', :tag => s.version.to_s, :submodules => 'true' }\n  s.source_files = 'discount/config.h', 'discount/setup.c', 'discount/tags.{h,c}', \n    'discount/html5.c', 'discount/emmatch.c', 'discount/Csio.c',  'discount/xml.c', 'discount/resource.c', \n    'discount/generate.c', 'discount/markdown.{h,c}', 'discount/mkdir.{c,h}', 'discount/cstring.h',\n    'discount/amalloc.{h,c}', 'discount/mkdio.{h,c}', 'discount/github_flavoured.c', 'discount/basename.c',\n    'GHMarkdownParser/**/*.{h,m}'\n  s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -all_load', 'HEADER_SEARCH_PATHS' => '\"${PODS_ROOT}/GHMarkdownParser/discount\"' }\n  s.resources = 'discount/blocktags'\n  s.requires_arc = true\nend\n"
  },
  {
    "path": "LICENSE.md",
    "content": "Copyright (c) 2011 Oliver Letterer\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n\n# GHMarkdownParser\n**GHMarkdownParser** is a [GitHub Flavored Markdown](http://github.github.com/github-flavored-markdown/) parser for iOS and Mac OS, based on [discount](https://github.com/Orc/discount).\n\n\n## How to setup GHMarkdownParser in your project\n\n* add **GHMarkdownParser** as a submodule to your project\n* navigate into **GHMarkdownParser directory** and initialize the submodules\n\n    ```\n    git submodule init\n    git submodule update\n    ```\n* drag and drop the `GHMarkdownParser.xcodeproj` into your project\n* select your **project target** -> **build settings**\n    * fill **Other Linker Flags** with `-Objc` and `-all_load`\n    * add the **path of GHMarkdownParser** to `Library Search Paths` and `Header Search Paths`\n* go into **build phases**\n    * add `GHMarkdownParser` (for iOS) or `GHMarkdownParser Mac` (for Mac) to **Target Dependencies**\n    * add `libGHMarkdownParser.a` (for iOS) or `libGHMarkdownParser_Mac.a` (for Mac) to **Link Binary with Libraries**\n\n## How to use GHMarkdownParser\n\n* import the GHMarkdownParser header\n\n    ```objc\n    #import \"GHMarkdownParser.h\"\n    ```\n\n* convert any markdown formatted string into HTML\n\n    ```objc\n    NSString *markdown = ...;\n    NSString *HTML = markdown.flavoredHTMLStringFromMarkdown;\n    ```\n\n* Or for greater control:\n\n    ```objc\n    GHMarkdownParser *parser = [[GHMarkdownParser alloc] init];\n    parser.options = kGHMarkdownAutoLink; // for example\n    parser.githubFlavored = YES;\n    NSString *html = [parser HTMLStringFromMarkdownString:markdownString];\n    ```\n"
  }
]