├── .gitignore ├── .travis.yml ├── AttributedStringSugar.podspec ├── AttributedStringSugar.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── AttributedStringSugar.xcscheme ├── AttributedStringSugar ├── Assets │ └── .gitkeep ├── AttributedStringSugar.h ├── Classes │ ├── .gitkeep │ ├── AttributedStringSugar.swift │ └── Operator.swift └── Info.plist ├── Example ├── AttributedStringSugar.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── AttributedStringSugar-Example.xcscheme ├── AttributedStringSugar.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AttributedStringSugar │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── AttributedStringSugar.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Target Support Files │ │ ├── AttributedStringSugar │ │ ├── AttributedStringSugar-Info.plist │ │ ├── AttributedStringSugar-dummy.m │ │ ├── AttributedStringSugar-prefix.pch │ │ ├── AttributedStringSugar-umbrella.h │ │ ├── AttributedStringSugar.debug.xcconfig │ │ ├── AttributedStringSugar.modulemap │ │ └── AttributedStringSugar.release.xcconfig │ │ ├── Pods-AttributedStringSugar_Example │ │ ├── Pods-AttributedStringSugar_Example-Info.plist │ │ ├── Pods-AttributedStringSugar_Example-acknowledgements.markdown │ │ ├── Pods-AttributedStringSugar_Example-acknowledgements.plist │ │ ├── Pods-AttributedStringSugar_Example-dummy.m │ │ ├── Pods-AttributedStringSugar_Example-frameworks.sh │ │ ├── Pods-AttributedStringSugar_Example-umbrella.h │ │ ├── Pods-AttributedStringSugar_Example.debug.xcconfig │ │ ├── Pods-AttributedStringSugar_Example.modulemap │ │ └── Pods-AttributedStringSugar_Example.release.xcconfig │ │ └── Pods-AttributedStringSugar_Tests │ │ ├── Pods-AttributedStringSugar_Tests-Info.plist │ │ ├── Pods-AttributedStringSugar_Tests-acknowledgements.markdown │ │ ├── Pods-AttributedStringSugar_Tests-acknowledgements.plist │ │ ├── Pods-AttributedStringSugar_Tests-dummy.m │ │ ├── Pods-AttributedStringSugar_Tests-umbrella.h │ │ ├── Pods-AttributedStringSugar_Tests.debug.xcconfig │ │ ├── Pods-AttributedStringSugar_Tests.modulemap │ │ └── Pods-AttributedStringSugar_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/.travis.yml -------------------------------------------------------------------------------- /AttributedStringSugar.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/AttributedStringSugar.podspec -------------------------------------------------------------------------------- /AttributedStringSugar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/AttributedStringSugar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AttributedStringSugar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/AttributedStringSugar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AttributedStringSugar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/AttributedStringSugar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AttributedStringSugar.xcodeproj/xcshareddata/xcschemes/AttributedStringSugar.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/AttributedStringSugar.xcodeproj/xcshareddata/xcschemes/AttributedStringSugar.xcscheme -------------------------------------------------------------------------------- /AttributedStringSugar/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AttributedStringSugar/AttributedStringSugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/AttributedStringSugar/AttributedStringSugar.h -------------------------------------------------------------------------------- /AttributedStringSugar/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AttributedStringSugar/Classes/AttributedStringSugar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/AttributedStringSugar/Classes/AttributedStringSugar.swift -------------------------------------------------------------------------------- /AttributedStringSugar/Classes/Operator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/AttributedStringSugar/Classes/Operator.swift -------------------------------------------------------------------------------- /AttributedStringSugar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/AttributedStringSugar/Info.plist -------------------------------------------------------------------------------- /Example/AttributedStringSugar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/AttributedStringSugar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/AttributedStringSugar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/AttributedStringSugar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AttributedStringSugar.xcodeproj/xcshareddata/xcschemes/AttributedStringSugar-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/AttributedStringSugar.xcodeproj/xcshareddata/xcschemes/AttributedStringSugar-Example.xcscheme -------------------------------------------------------------------------------- /Example/AttributedStringSugar.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/AttributedStringSugar.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AttributedStringSugar.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/AttributedStringSugar.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/AttributedStringSugar/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/AttributedStringSugar/AppDelegate.swift -------------------------------------------------------------------------------- /Example/AttributedStringSugar/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/AttributedStringSugar/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/AttributedStringSugar/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/AttributedStringSugar/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/AttributedStringSugar/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/AttributedStringSugar/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/AttributedStringSugar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/AttributedStringSugar/Info.plist -------------------------------------------------------------------------------- /Example/AttributedStringSugar/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/AttributedStringSugar/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/AttributedStringSugar.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Local Podspecs/AttributedStringSugar.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/AttributedStringSugar/AttributedStringSugar.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Example/Pods-AttributedStringSugar_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Pods/Target Support Files/Pods-AttributedStringSugar_Tests/Pods-AttributedStringSugar_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElonPark/AttributedStringSugar/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------