https://github.com/igor-makarov/slimdown-swift
Slimdown parser, implemented in Swift
https://github.com/igor-makarov/slimdown-swift
Last synced: 3 months ago
JSON representation
Slimdown parser, implemented in Swift
- Host: GitHub
- URL: https://github.com/igor-makarov/slimdown-swift
- Owner: igor-makarov
- License: mit
- Created: 2022-05-03T10:18:26.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-04T07:40:52.000Z (about 3 years ago)
- Last Synced: 2025-01-20T15:48:50.901Z (5 months ago)
- Language: Swift
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
Slimdown
---
[](https://github.com/Carthage/Carthage)Slimdown parser, implemented in Swift
## Integration
#### CocoaPods (iOS 8+, OS X 10.9+)
You can use [CocoaPods](http://cocoapods.org/) to install `Slimdown` by adding it to your `Podfile`:
```ruby
platform :ios, '8.0'
use_frameworks!target 'MyApp' do
pod 'Slimdown', '~> 0.1.0'
end
```#### Carthage (iOS 8+, OS X 10.9+)
You can use [Carthage](https://github.com/Carthage/Carthage) to install `Slimdown` by adding it to your `Cartfile`:
```
github "igor-makarov/Slimdown" ~> 4.0
```If you use Carthage to build your dependencies, make sure you have added `Slimdown.framework` to the "Linked Frameworks and Libraries" section of your target, and have included them in your Carthage framework copying build phase.
#### Swift Package Manager
You can use [The Swift Package Manager](https://swift.org/package-manager) to install `Slimdown` by adding the proper description to your `Package.swift` file:
```swift
// swift-tools-version:4.0
import PackageDescriptionlet package = Package(
name: "YOUR_PROJECT_NAME",
dependencies: [
.package(url: "https://github.com/igor-makarov/Slimdown.git", from: "0.1.0"),
]
)
```
Then run `swift build` whenever you get prepared.## Usage
## LICENCE
Copyright © 2019 Igor Makarov MIT license