├── .gitignore ├── .swift-version ├── Example ├── Podfile ├── RealmContent.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── marin.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── RealmContent-Example.xcscheme │ └── xcuserdata │ │ └── marin.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── RealmContent │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CustomCollectionViewController.swift │ ├── DemoData.swift │ ├── DemosTableViewController.swift │ ├── Entities.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── PageCellView.swift │ ├── PageCollectionViewCell.swift │ ├── ProductCellView.swift │ ├── StoreViewController.swift │ └── ViewController.swift ├── RealmContent_Example.entitlements └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── RealmContent.podspec ├── RealmContent ├── Core │ ├── .gitkeep │ ├── Classes │ │ └── ContentListDataSource.swift │ └── View │ │ ├── ContentViewController.swift │ │ ├── ImageContentCell.swift │ │ └── TextContentCell.swift ├── Entities │ ├── ContentElement.swift │ └── ContentPage.swift └── Markdown │ ├── Classes │ └── MarkdownContentConverter.swift │ └── View │ ├── MarkdownView.swift │ └── MarkdownViewController.swift ├── _Pods.xcodeproj └── assets ├── content-list.png ├── headings.png ├── image.png ├── light-night-lens-shadow.jpg ├── links.png ├── models-after.png ├── models-before.png ├── move-elements.gif ├── page-columns.png ├── pexels-photo-248797.jpg ├── pexels-photo-279906.jpeg ├── pexels-photo-296230.jpg ├── pexels-photo-50924.jpeg ├── pexels-photo-90946.jpeg ├── pexels-photo.jpg ├── realm.png ├── text.png └── video-thumb.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/RealmContent.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/RealmContent.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RealmContent.xcodeproj/project.xcworkspace/xcuserdata/marin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent.xcodeproj/project.xcworkspace/xcuserdata/marin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/RealmContent.xcodeproj/xcshareddata/xcschemes/RealmContent-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent.xcodeproj/xcshareddata/xcschemes/RealmContent-Example.xcscheme -------------------------------------------------------------------------------- /Example/RealmContent.xcodeproj/xcuserdata/marin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent.xcodeproj/xcuserdata/marin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/RealmContent/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/AppDelegate.swift -------------------------------------------------------------------------------- /Example/RealmContent/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/RealmContent/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/RealmContent/CustomCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/CustomCollectionViewController.swift -------------------------------------------------------------------------------- /Example/RealmContent/DemoData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/DemoData.swift -------------------------------------------------------------------------------- /Example/RealmContent/DemosTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/DemosTableViewController.swift -------------------------------------------------------------------------------- /Example/RealmContent/Entities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/Entities.swift -------------------------------------------------------------------------------- /Example/RealmContent/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/RealmContent/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/Info.plist -------------------------------------------------------------------------------- /Example/RealmContent/PageCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/PageCellView.swift -------------------------------------------------------------------------------- /Example/RealmContent/PageCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/PageCollectionViewCell.swift -------------------------------------------------------------------------------- /Example/RealmContent/ProductCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/ProductCellView.swift -------------------------------------------------------------------------------- /Example/RealmContent/StoreViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/StoreViewController.swift -------------------------------------------------------------------------------- /Example/RealmContent/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent/ViewController.swift -------------------------------------------------------------------------------- /Example/RealmContent_Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/RealmContent_Example.entitlements -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/README.md -------------------------------------------------------------------------------- /RealmContent.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/RealmContent.podspec -------------------------------------------------------------------------------- /RealmContent/Core/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RealmContent/Core/Classes/ContentListDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/RealmContent/Core/Classes/ContentListDataSource.swift -------------------------------------------------------------------------------- /RealmContent/Core/View/ContentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/RealmContent/Core/View/ContentViewController.swift -------------------------------------------------------------------------------- /RealmContent/Core/View/ImageContentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/RealmContent/Core/View/ImageContentCell.swift -------------------------------------------------------------------------------- /RealmContent/Core/View/TextContentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/RealmContent/Core/View/TextContentCell.swift -------------------------------------------------------------------------------- /RealmContent/Entities/ContentElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/RealmContent/Entities/ContentElement.swift -------------------------------------------------------------------------------- /RealmContent/Entities/ContentPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/RealmContent/Entities/ContentPage.swift -------------------------------------------------------------------------------- /RealmContent/Markdown/Classes/MarkdownContentConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/RealmContent/Markdown/Classes/MarkdownContentConverter.swift -------------------------------------------------------------------------------- /RealmContent/Markdown/View/MarkdownView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/RealmContent/Markdown/View/MarkdownView.swift -------------------------------------------------------------------------------- /RealmContent/Markdown/View/MarkdownViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/RealmContent/Markdown/View/MarkdownViewController.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /assets/content-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/content-list.png -------------------------------------------------------------------------------- /assets/headings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/headings.png -------------------------------------------------------------------------------- /assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/image.png -------------------------------------------------------------------------------- /assets/light-night-lens-shadow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/light-night-lens-shadow.jpg -------------------------------------------------------------------------------- /assets/links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/links.png -------------------------------------------------------------------------------- /assets/models-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/models-after.png -------------------------------------------------------------------------------- /assets/models-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/models-before.png -------------------------------------------------------------------------------- /assets/move-elements.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/move-elements.gif -------------------------------------------------------------------------------- /assets/page-columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/page-columns.png -------------------------------------------------------------------------------- /assets/pexels-photo-248797.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/pexels-photo-248797.jpg -------------------------------------------------------------------------------- /assets/pexels-photo-279906.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/pexels-photo-279906.jpeg -------------------------------------------------------------------------------- /assets/pexels-photo-296230.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/pexels-photo-296230.jpg -------------------------------------------------------------------------------- /assets/pexels-photo-50924.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/pexels-photo-50924.jpeg -------------------------------------------------------------------------------- /assets/pexels-photo-90946.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/pexels-photo-90946.jpeg -------------------------------------------------------------------------------- /assets/pexels-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/pexels-photo.jpg -------------------------------------------------------------------------------- /assets/realm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/realm.png -------------------------------------------------------------------------------- /assets/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/text.png -------------------------------------------------------------------------------- /assets/video-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/RealmContent/HEAD/assets/video-thumb.jpg --------------------------------------------------------------------------------