GitHub Viewer
//
// ProjectLineNote.m
// Coding_iOS
//
// Created by Ease on 15/5/13.
// Copyright (c) 2015年 Coding. All rights reserved.
//
#import "ProjectLineNote.h"
@implementation ProjectLineNote
- (void)setContent:(NSString *)content{
if (_content != content) {
_htmlMedia = [HtmlMedia htmlMediaWithString:content showType:MediaShowTypeCode];
_content = _htmlMedia.contentDisplay;
}
}
@end