├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .swiftlint.yml ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── OPML │ ├── Exporter │ ├── DateFormatter.swift │ ├── Exporter.swift │ └── HTML.swift │ ├── Models │ ├── Attribute.swift │ ├── OPML.swift │ └── OPMLEntry.swift │ └── Parser │ ├── OPMLBuilder.swift │ ├── OPMLEntryBuilder.swift │ └── OPMLParser.swift └── Tests └── OPMLTests ├── Resources ├── feedly.opml └── rsparser.opml └── Tests.swift /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.podspec linguist-vendored 3 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/README.md -------------------------------------------------------------------------------- /Sources/OPML/Exporter/DateFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Sources/OPML/Exporter/DateFormatter.swift -------------------------------------------------------------------------------- /Sources/OPML/Exporter/Exporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Sources/OPML/Exporter/Exporter.swift -------------------------------------------------------------------------------- /Sources/OPML/Exporter/HTML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Sources/OPML/Exporter/HTML.swift -------------------------------------------------------------------------------- /Sources/OPML/Models/Attribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Sources/OPML/Models/Attribute.swift -------------------------------------------------------------------------------- /Sources/OPML/Models/OPML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Sources/OPML/Models/OPML.swift -------------------------------------------------------------------------------- /Sources/OPML/Models/OPMLEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Sources/OPML/Models/OPMLEntry.swift -------------------------------------------------------------------------------- /Sources/OPML/Parser/OPMLBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Sources/OPML/Parser/OPMLBuilder.swift -------------------------------------------------------------------------------- /Sources/OPML/Parser/OPMLEntryBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Sources/OPML/Parser/OPMLEntryBuilder.swift -------------------------------------------------------------------------------- /Sources/OPML/Parser/OPMLParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Sources/OPML/Parser/OPMLParser.swift -------------------------------------------------------------------------------- /Tests/OPMLTests/Resources/feedly.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Tests/OPMLTests/Resources/feedly.opml -------------------------------------------------------------------------------- /Tests/OPMLTests/Resources/rsparser.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Tests/OPMLTests/Resources/rsparser.opml -------------------------------------------------------------------------------- /Tests/OPMLTests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixel-foundry/opml/HEAD/Tests/OPMLTests/Tests.swift --------------------------------------------------------------------------------