├── .gitignore ├── .swift-version ├── Docs ├── Sentence Breakdown.sketch └── sentence_breakdown.png ├── LICENSE ├── Nihongo.swift ├── Nihongo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Nihongo ├── Info.plist └── Nihongo.h ├── README.md ├── Types.swift └── YahooMAParser.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 -------------------------------------------------------------------------------- /Docs/Sentence Breakdown.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/Docs/Sentence Breakdown.sketch -------------------------------------------------------------------------------- /Docs/sentence_breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/Docs/sentence_breakdown.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/LICENSE -------------------------------------------------------------------------------- /Nihongo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/Nihongo.swift -------------------------------------------------------------------------------- /Nihongo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/Nihongo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Nihongo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/Nihongo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Nihongo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/Nihongo/Info.plist -------------------------------------------------------------------------------- /Nihongo/Nihongo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/Nihongo/Nihongo.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/README.md -------------------------------------------------------------------------------- /Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/Types.swift -------------------------------------------------------------------------------- /YahooMAParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/Nihongo/HEAD/YahooMAParser.swift --------------------------------------------------------------------------------