I just added the lightweight NSString to NSAttributedString markup NSAttributedString to MGBoxKit . It is not Markdown or Textile, but it is very similar. While it supports bold, italics, underlining, monospaced, and color text.
The MGMushParser class can be used autonomously and is fairly easy to extend.
NSString *markup = @"**bold**, //italics//, __underlining__, and `monospacing`, and {#0000FF|coloured text}"; UIFont *baseFont = [UIFont fontWithName:@"HelveticaNeue" size:18]; UIColor *textColor = UIColor.whiteColor; myLabel.attributedString = [MGMushParser attributedStringFromMush:markup font:baseFont color:textColor];
OHAttributedLabel also has a similar markup parser.
source share