Files
2015-01-18 16:33:49 +08:00

26 lines
431 B
Objective-C

//
// DOMNode+Text.h
// MacDown
//
// Created by Tzu-ping Chung on 18/1.
// Copyright (c) 2015 Tzu-ping Chung . All rights reserved.
//
#import <WebKit/WebKit.h>
struct DOMNodeTextCount
{
NSUInteger words;
NSUInteger characters;
NSUInteger characterWithoutSpaces;
};
typedef struct DOMNodeTextCount DOMNodeTextCount;
@interface DOMNode (Text)
@property (readonly, nonatomic) DOMNodeTextCount textCount;
@end