├── .gitignore ├── .travis.yml ├── DZReadability.podspec ├── Example ├── DZReadability-OSX │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── DZReadability-OSXTests │ ├── DZReadability_OSXTests.m │ └── Info.plist ├── DZReadability-iOS │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main_iPhone.storyboard │ ├── DZViewController.h │ ├── DZViewController.m │ ├── DZWebViewController.h │ ├── DZWebViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── DZReadability-iOSTests │ ├── DZReadability_iOSTests.m │ └── Info.plist ├── DZReadability.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── DZReadability-OSX.xcscheme │ │ ├── DZReadability-iOS.xcscheme │ │ └── DZReadability.xcscheme ├── DZReadability.xcworkspace │ └── contents.xcworkspacedata ├── Podfile ├── Podfile.lock ├── Pods │ ├── AFNetworking │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperation.m │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPRequestOperationManager.m │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFHTTPSessionManager.m │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworkReachabilityManager.m │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFSecurityPolicy.m │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLConnectionOperation.m │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLRequestSerialization.m │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLResponseSerialization.m │ │ │ ├── AFURLSessionManager.h │ │ │ └── AFURLSessionManager.m │ │ ├── LICENSE │ │ ├── README.md │ │ └── UIKit+AFNetworking │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.m │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.m │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.m │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.m │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.m │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.m │ │ │ ├── UIWebView+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.m │ ├── HTMLReader │ │ ├── Code │ │ │ ├── HTMLComment.h │ │ │ ├── HTMLComment.m │ │ │ ├── HTMLDocument.h │ │ │ ├── HTMLDocument.m │ │ │ ├── HTMLDocumentType.h │ │ │ ├── HTMLDocumentType.m │ │ │ ├── HTMLElement.h │ │ │ ├── HTMLElement.m │ │ │ ├── HTMLEntities.h │ │ │ ├── HTMLEntities.m │ │ │ ├── HTMLNamespace.h │ │ │ ├── HTMLNode.h │ │ │ ├── HTMLNode.m │ │ │ ├── HTMLOrderedDictionary.h │ │ │ ├── HTMLOrderedDictionary.m │ │ │ ├── HTMLParser.h │ │ │ ├── HTMLParser.m │ │ │ ├── HTMLPreprocessedInputStream.h │ │ │ ├── HTMLPreprocessedInputStream.m │ │ │ ├── HTMLQuirksMode.h │ │ │ ├── HTMLReader.h │ │ │ ├── HTMLSelector.h │ │ │ ├── HTMLSelector.m │ │ │ ├── HTMLSerialization.h │ │ │ ├── HTMLSerialization.m │ │ │ ├── HTMLString.h │ │ │ ├── HTMLString.m │ │ │ ├── HTMLSupport.h │ │ │ ├── HTMLTextNode.h │ │ │ ├── HTMLTextNode.m │ │ │ ├── HTMLTokenizer.h │ │ │ ├── HTMLTokenizer.m │ │ │ ├── HTMLTokenizerState.h │ │ │ ├── HTMLTreeEnumerator.h │ │ │ ├── HTMLTreeEnumerator.m │ │ │ ├── NSString+HTMLEntities.h │ │ │ └── NSString+HTMLEntities.m │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ └── Public │ │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ │ ├── DZReadability │ │ │ ├── DZReadability.h │ │ │ ├── DZReadability_constants.h │ │ │ └── GGReadabilityParser.h │ │ │ ├── HTMLReader │ │ │ ├── HTMLComment.h │ │ │ ├── HTMLDocument.h │ │ │ ├── HTMLDocumentType.h │ │ │ ├── HTMLElement.h │ │ │ ├── HTMLEntities.h │ │ │ ├── HTMLNamespace.h │ │ │ ├── HTMLNode.h │ │ │ ├── HTMLOrderedDictionary.h │ │ │ ├── HTMLParser.h │ │ │ ├── HTMLPreprocessedInputStream.h │ │ │ ├── HTMLQuirksMode.h │ │ │ ├── HTMLReader.h │ │ │ ├── HTMLSelector.h │ │ │ ├── HTMLSerialization.h │ │ │ ├── HTMLString.h │ │ │ ├── HTMLSupport.h │ │ │ ├── HTMLTextNode.h │ │ │ ├── HTMLTokenizer.h │ │ │ ├── HTMLTokenizerState.h │ │ │ ├── HTMLTreeEnumerator.h │ │ │ └── NSString+HTMLEntities.h │ │ │ └── MBProgressHUD │ │ │ └── MBProgressHUD.h │ ├── Local Podspecs │ │ └── DZReadability.podspec │ ├── MBProgressHUD │ │ ├── LICENSE │ │ ├── MBProgressHUD.h │ │ ├── MBProgressHUD.m │ │ └── README.mdown │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-ios-AFNetworking │ │ ├── Pods-ios-AFNetworking-Private.xcconfig │ │ ├── Pods-ios-AFNetworking-dummy.m │ │ ├── Pods-ios-AFNetworking-prefix.pch │ │ └── Pods-ios-AFNetworking.xcconfig │ │ ├── Pods-ios-DZReadability │ │ ├── Pods-ios-DZReadability-Private.xcconfig │ │ ├── Pods-ios-DZReadability-dummy.m │ │ ├── Pods-ios-DZReadability-prefix.pch │ │ └── Pods-ios-DZReadability.xcconfig │ │ ├── Pods-ios-HTMLReader │ │ ├── Pods-ios-HTMLReader-Private.xcconfig │ │ ├── Pods-ios-HTMLReader-dummy.m │ │ ├── Pods-ios-HTMLReader-prefix.pch │ │ └── Pods-ios-HTMLReader.xcconfig │ │ ├── Pods-ios-MBProgressHUD │ │ ├── Pods-ios-MBProgressHUD-Private.xcconfig │ │ ├── Pods-ios-MBProgressHUD-dummy.m │ │ ├── Pods-ios-MBProgressHUD-prefix.pch │ │ └── Pods-ios-MBProgressHUD.xcconfig │ │ ├── Pods-ios │ │ ├── Pods-ios-acknowledgements.markdown │ │ ├── Pods-ios-acknowledgements.plist │ │ ├── Pods-ios-dummy.m │ │ ├── Pods-ios-environment.h │ │ ├── Pods-ios-resources.sh │ │ ├── Pods-ios.debug.xcconfig │ │ └── Pods-ios.release.xcconfig │ │ ├── Pods-osx-AFNetworking │ │ ├── Pods-osx-AFNetworking-Private.xcconfig │ │ ├── Pods-osx-AFNetworking-dummy.m │ │ ├── Pods-osx-AFNetworking-prefix.pch │ │ └── Pods-osx-AFNetworking.xcconfig │ │ ├── Pods-osx-DZReadability │ │ ├── Pods-osx-DZReadability-Private.xcconfig │ │ ├── Pods-osx-DZReadability-dummy.m │ │ ├── Pods-osx-DZReadability-prefix.pch │ │ └── Pods-osx-DZReadability.xcconfig │ │ ├── Pods-osx-HTMLReader │ │ ├── Pods-osx-HTMLReader-Private.xcconfig │ │ ├── Pods-osx-HTMLReader-dummy.m │ │ ├── Pods-osx-HTMLReader-prefix.pch │ │ └── Pods-osx-HTMLReader.xcconfig │ │ └── Pods-osx │ │ ├── Pods-osx-acknowledgements.markdown │ │ ├── Pods-osx-acknowledgements.plist │ │ ├── Pods-osx-dummy.m │ │ ├── Pods-osx-environment.h │ │ ├── Pods-osx-resources.sh │ │ ├── Pods-osx.debug.xcconfig │ │ └── Pods-osx.release.xcconfig └── SampleText │ ├── Result0.html │ ├── Result1.html │ ├── Result2.html │ ├── Result3.html │ ├── Sample0.html │ ├── Sample1.html │ ├── Sample2.html │ ├── Sample3.html │ └── SampleDocumentURLs.plist ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── DZReadability.h │ ├── DZReadability.m │ ├── DZReadability_constants.h │ ├── GGReadabilityParser.h │ └── GGReadabilityParser.m ├── README.md └── screenshots └── screenshot_DZReadability_01.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/.travis.yml -------------------------------------------------------------------------------- /DZReadability.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/DZReadability.podspec -------------------------------------------------------------------------------- /Example/DZReadability-OSX/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-OSX/AppDelegate.h -------------------------------------------------------------------------------- /Example/DZReadability-OSX/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-OSX/AppDelegate.m -------------------------------------------------------------------------------- /Example/DZReadability-OSX/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-OSX/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Example/DZReadability-OSX/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-OSX/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/DZReadability-OSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-OSX/Info.plist -------------------------------------------------------------------------------- /Example/DZReadability-OSX/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-OSX/main.m -------------------------------------------------------------------------------- /Example/DZReadability-OSXTests/DZReadability_OSXTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-OSXTests/DZReadability_OSXTests.m -------------------------------------------------------------------------------- /Example/DZReadability-OSXTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-OSXTests/Info.plist -------------------------------------------------------------------------------- /Example/DZReadability-iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/AppDelegate.h -------------------------------------------------------------------------------- /Example/DZReadability-iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/AppDelegate.m -------------------------------------------------------------------------------- /Example/DZReadability-iOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/DZReadability-iOS/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/DZReadability-iOS/DZViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/DZViewController.h -------------------------------------------------------------------------------- /Example/DZReadability-iOS/DZViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/DZViewController.m -------------------------------------------------------------------------------- /Example/DZReadability-iOS/DZWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/DZWebViewController.h -------------------------------------------------------------------------------- /Example/DZReadability-iOS/DZWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/DZWebViewController.m -------------------------------------------------------------------------------- /Example/DZReadability-iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/DZReadability-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/Info.plist -------------------------------------------------------------------------------- /Example/DZReadability-iOS/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/ViewController.h -------------------------------------------------------------------------------- /Example/DZReadability-iOS/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/ViewController.m -------------------------------------------------------------------------------- /Example/DZReadability-iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOS/main.m -------------------------------------------------------------------------------- /Example/DZReadability-iOSTests/DZReadability_iOSTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOSTests/DZReadability_iOSTests.m -------------------------------------------------------------------------------- /Example/DZReadability-iOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability-iOSTests/Info.plist -------------------------------------------------------------------------------- /Example/DZReadability.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/DZReadability.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DZReadability.xcodeproj/xcshareddata/xcschemes/DZReadability-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability.xcodeproj/xcshareddata/xcschemes/DZReadability-OSX.xcscheme -------------------------------------------------------------------------------- /Example/DZReadability.xcodeproj/xcshareddata/xcschemes/DZReadability-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability.xcodeproj/xcshareddata/xcschemes/DZReadability-iOS.xcscheme -------------------------------------------------------------------------------- /Example/DZReadability.xcodeproj/xcshareddata/xcschemes/DZReadability.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability.xcodeproj/xcshareddata/xcschemes/DZReadability.xcscheme -------------------------------------------------------------------------------- /Example/DZReadability.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/DZReadability.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLComment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLComment.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLComment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLComment.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLDocument.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLDocument.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLDocumentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLDocumentType.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLDocumentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLDocumentType.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLElement.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLElement.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLEntities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLEntities.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLEntities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLEntities.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLNamespace.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLNode.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLNode.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLOrderedDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLOrderedDictionary.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLOrderedDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLOrderedDictionary.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLParser.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLParser.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLPreprocessedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLPreprocessedInputStream.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLPreprocessedInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLPreprocessedInputStream.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLQuirksMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLQuirksMode.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLReader.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLSelector.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLSelector.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLSerialization.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLSerialization.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLString.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLString.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLSupport.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLTextNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLTextNode.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLTextNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLTextNode.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLTokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLTokenizer.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLTokenizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLTokenizer.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLTokenizerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLTokenizerState.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLTreeEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLTreeEnumerator.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/HTMLTreeEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/HTMLTreeEnumerator.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/NSString+HTMLEntities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/NSString+HTMLEntities.h -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/Code/NSString+HTMLEntities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/Code/NSString+HTMLEntities.m -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/LICENSE: -------------------------------------------------------------------------------- 1 | HTMLReader is in the public domain. 2 | -------------------------------------------------------------------------------- /Example/Pods/HTMLReader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/HTMLReader/README.md -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DZReadability/DZReadability.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/DZReadability.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DZReadability/DZReadability_constants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/DZReadability_constants.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DZReadability/GGReadabilityParser.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/GGReadabilityParser.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLComment.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLComment.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLDocument.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLDocument.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLDocumentType.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLDocumentType.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLElement.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLElement.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLEntities.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLEntities.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLNamespace.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLNamespace.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLNode.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLOrderedDictionary.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLOrderedDictionary.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLParser.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLParser.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLPreprocessedInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLPreprocessedInputStream.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLQuirksMode.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLQuirksMode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLReader.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLReader.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLSelector.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLSelector.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLSerialization.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLString.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLString.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLSupport.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLSupport.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLTextNode.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLTextNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLTokenizer.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLTokenizer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLTokenizerState.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLTokenizerState.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/HTMLTreeEnumerator.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/HTMLTreeEnumerator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/HTMLReader/NSString+HTMLEntities.h: -------------------------------------------------------------------------------- 1 | ../../../HTMLReader/Code/NSString+HTMLEntities.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/DZReadability.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Local Podspecs/DZReadability.podspec -------------------------------------------------------------------------------- /Example/Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /Example/Pods/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Example/Pods/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Example/Pods/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-AFNetworking/Pods-ios-AFNetworking-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-AFNetworking/Pods-ios-AFNetworking-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-AFNetworking/Pods-ios-AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-AFNetworking/Pods-ios-AFNetworking-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-AFNetworking/Pods-ios-AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-AFNetworking/Pods-ios-AFNetworking-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-AFNetworking/Pods-ios-AFNetworking.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-AFNetworking/Pods-ios-AFNetworking.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-DZReadability/Pods-ios-DZReadability-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-DZReadability/Pods-ios-DZReadability-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-DZReadability/Pods-ios-DZReadability-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-DZReadability/Pods-ios-DZReadability-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-DZReadability/Pods-ios-DZReadability-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-DZReadability/Pods-ios-DZReadability-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-DZReadability/Pods-ios-DZReadability.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-HTMLReader/Pods-ios-HTMLReader-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-HTMLReader/Pods-ios-HTMLReader-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-HTMLReader/Pods-ios-HTMLReader-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-HTMLReader/Pods-ios-HTMLReader-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-HTMLReader/Pods-ios-HTMLReader-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-HTMLReader/Pods-ios-HTMLReader-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-HTMLReader/Pods-ios-HTMLReader.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-MBProgressHUD/Pods-ios-MBProgressHUD-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-MBProgressHUD/Pods-ios-MBProgressHUD-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-MBProgressHUD/Pods-ios-MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-MBProgressHUD/Pods-ios-MBProgressHUD-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-MBProgressHUD/Pods-ios-MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios-MBProgressHUD/Pods-ios-MBProgressHUD-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios-MBProgressHUD/Pods-ios-MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_IOS_MBPROGRESSHUD_OTHER_LDFLAGS = -framework "CoreGraphics" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios/Pods-ios-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios/Pods-ios-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios/Pods-ios-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios/Pods-ios-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios/Pods-ios-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios/Pods-ios-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios/Pods-ios-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios/Pods-ios-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios/Pods-ios-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios/Pods-ios-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios/Pods-ios.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios/Pods-ios.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ios/Pods-ios.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-ios/Pods-ios.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-AFNetworking/Pods-osx-AFNetworking-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx-AFNetworking/Pods-osx-AFNetworking-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-AFNetworking/Pods-osx-AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx-AFNetworking/Pods-osx-AFNetworking-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-AFNetworking/Pods-osx-AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx-AFNetworking/Pods-osx-AFNetworking-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-AFNetworking/Pods-osx-AFNetworking.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx-AFNetworking/Pods-osx-AFNetworking.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-DZReadability/Pods-osx-DZReadability-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx-DZReadability/Pods-osx-DZReadability-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-DZReadability/Pods-osx-DZReadability-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx-DZReadability/Pods-osx-DZReadability-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-DZReadability/Pods-osx-DZReadability-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx-DZReadability/Pods-osx-DZReadability-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-DZReadability/Pods-osx-DZReadability.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-HTMLReader/Pods-osx-HTMLReader-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx-HTMLReader/Pods-osx-HTMLReader-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-HTMLReader/Pods-osx-HTMLReader-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx-HTMLReader/Pods-osx-HTMLReader-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-HTMLReader/Pods-osx-HTMLReader-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx-HTMLReader/Pods-osx-HTMLReader-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx-HTMLReader/Pods-osx-HTMLReader.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx/Pods-osx-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx/Pods-osx-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx/Pods-osx-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx/Pods-osx-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx/Pods-osx-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx/Pods-osx-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx/Pods-osx-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx/Pods-osx-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx/Pods-osx-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx/Pods-osx-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx/Pods-osx.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx/Pods-osx.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-osx/Pods-osx.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/Pods/Target Support Files/Pods-osx/Pods-osx.release.xcconfig -------------------------------------------------------------------------------- /Example/SampleText/Result0.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/SampleText/Result1.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/SampleText/Result2.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/SampleText/Result3.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/SampleText/Sample0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/SampleText/Sample0.html -------------------------------------------------------------------------------- /Example/SampleText/Sample1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/SampleText/Sample1.html -------------------------------------------------------------------------------- /Example/SampleText/Sample2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/SampleText/Sample2.html -------------------------------------------------------------------------------- /Example/SampleText/Sample3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/SampleText/Sample3.html -------------------------------------------------------------------------------- /Example/SampleText/SampleDocumentURLs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Example/SampleText/SampleDocumentURLs.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/DZReadability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Pod/Classes/DZReadability.h -------------------------------------------------------------------------------- /Pod/Classes/DZReadability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Pod/Classes/DZReadability.m -------------------------------------------------------------------------------- /Pod/Classes/DZReadability_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Pod/Classes/DZReadability_constants.h -------------------------------------------------------------------------------- /Pod/Classes/GGReadabilityParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Pod/Classes/GGReadabilityParser.h -------------------------------------------------------------------------------- /Pod/Classes/GGReadabilityParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/Pod/Classes/GGReadabilityParser.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/screenshot_DZReadability_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DZamataev/DZReadability/HEAD/screenshots/screenshot_DZReadability_01.png --------------------------------------------------------------------------------