NMEObjC - an Objective-C wrapper for NME
- Author:
- Yves Piguet
- See also:
- http://www.nyctergatis.com (home of NME project) and http://www.wikicreole.org (Creole site).
Usage
To display text with NME markup in an NSTextView object:
#import "NMEObjC.h"
NSTextView *textView;
NSString *nmeInput;
NSRange range = NSMakeRange([[output textStorage] length], 0);
NSData *rtf = [NSData dataWithNMEString:nmeInput fontSize:0 format:'r'];
[textView replaceCharactersInRange:range withRTF:rtf];