├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── SwiftString.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SwiftString-Example.xcscheme ├── SwiftString.xcworkspace │ └── contents.xcworkspacedata ├── SwiftString │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift └── Tests │ ├── Info.plist │ ├── String+HTMLTests.swift │ └── StringExtensionTests.swift ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── String+HTML.swift │ └── StringExtensions.swift ├── README.md ├── SwiftString.podspec └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/SwiftString.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/SwiftString.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SwiftString.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/SwiftString.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SwiftString.xcodeproj/xcshareddata/xcschemes/SwiftString-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/SwiftString.xcodeproj/xcshareddata/xcschemes/SwiftString-Example.xcscheme -------------------------------------------------------------------------------- /Example/SwiftString.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/SwiftString.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SwiftString/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/SwiftString/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SwiftString/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/SwiftString/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SwiftString/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/SwiftString/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SwiftString/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/SwiftString/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftString/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/SwiftString/Info.plist -------------------------------------------------------------------------------- /Example/SwiftString/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/SwiftString/ViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/String+HTMLTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/Tests/String+HTMLTests.swift -------------------------------------------------------------------------------- /Example/Tests/StringExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Example/Tests/StringExtensionTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/String+HTML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Pod/Classes/String+HTML.swift -------------------------------------------------------------------------------- /Pod/Classes/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/Pod/Classes/StringExtensions.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/README.md -------------------------------------------------------------------------------- /SwiftString.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amayne/SwiftString/HEAD/SwiftString.podspec -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------