igor-makarov / Slimdown-Swift

Slimdown parser, implemented in Swift

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Slimdown

Carthage compatible

License

Slimdown parser, implemented in Swift

Integration

CocoaPods (iOS 8+, OS X 10.9+)

You can use CocoaPods to install Slimdown by adding it to your Podfile:

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 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 to install Slimdown by adding the proper description to your Package.swift file:

// swift-tools-version:4.0
import PackageDescription

let 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

About

Slimdown parser, implemented in Swift

License:MIT License


Languages

Language:Swift 80.7%Language:HTML 13.5%Language:Ruby 5.7%