├── .github └── workflows │ └── swift.yml ├── .gitignore ├── Assets ├── simple_string_semantic.png └── simple_string_visual.png ├── AttributedStringStyle.podspec ├── CHANGELOG.md ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── AttributedStringStyle │ ├── AttributedStringBuilder.swift │ ├── AttributedStringStyler.swift │ ├── NSAttributedString+Style.swift │ └── NSAttributedString.Key+Style.swift └── Tests ├── AttributedStringStyleTests ├── AttributedStringBuilderTests.swift ├── AttributedStringStylerTests.swift ├── TestUtils.swift └── XCTestManifests.swift └── LinuxMain.swift /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/simple_string_semantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Assets/simple_string_semantic.png -------------------------------------------------------------------------------- /Assets/simple_string_visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Assets/simple_string_visual.png -------------------------------------------------------------------------------- /AttributedStringStyle.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/AttributedStringStyle.podspec -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AttributedStringStyle/AttributedStringBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Sources/AttributedStringStyle/AttributedStringBuilder.swift -------------------------------------------------------------------------------- /Sources/AttributedStringStyle/AttributedStringStyler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Sources/AttributedStringStyle/AttributedStringStyler.swift -------------------------------------------------------------------------------- /Sources/AttributedStringStyle/NSAttributedString+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Sources/AttributedStringStyle/NSAttributedString+Style.swift -------------------------------------------------------------------------------- /Sources/AttributedStringStyle/NSAttributedString.Key+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Sources/AttributedStringStyle/NSAttributedString.Key+Style.swift -------------------------------------------------------------------------------- /Tests/AttributedStringStyleTests/AttributedStringBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Tests/AttributedStringStyleTests/AttributedStringBuilderTests.swift -------------------------------------------------------------------------------- /Tests/AttributedStringStyleTests/AttributedStringStylerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Tests/AttributedStringStyleTests/AttributedStringStylerTests.swift -------------------------------------------------------------------------------- /Tests/AttributedStringStyleTests/TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Tests/AttributedStringStyleTests/TestUtils.swift -------------------------------------------------------------------------------- /Tests/AttributedStringStyleTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Tests/AttributedStringStyleTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felginep/AttributedStringStyle/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------