2013年3月28日木曜日

Markdownレンダリングライブラリ




こんな感じで使う。
NSString *markdownString = @"#Markdown!";
BPParser *parser = [[BPParser alloc] init];
BPDocument *document = [parser parse:markdownString];

BPAttributedStringConverter *converter = [[BPAttributedStringConverter alloc] init];
NSAttributedString *attributedText = [converter convertDocument:document];

[[self markdownView] setAttributedText:attributedText];

0 件のコメント:

コメントを投稿