-
Notifications
You must be signed in to change notification settings - Fork 76
/
TSMarkdownParser.podspec
24 lines (22 loc) · 1.2 KB
/
TSMarkdownParser.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "TSMarkdownParser"
s.version = "2.1.5"
s.summary = "A markdown to NSAttributedString parser for iOS and OSX"
s.description = <<-DESC
TSMarkdownParser is a markdown to NSAttributedString parser for iOS, TVOS and OSX implemented using NSRegularExpressions.
It supports many of the standard tags layed out by John Gruber on his site [Daring Fireball](http://daringfireball.net/projects/markdown/syntax).
It is also very extendable via Regular Expressions making it easy to add your own custom tags or a totally different parsing syntax if you like.
DESC
s.homepage = "https://github.com/laptobbe/TSMarkdownParser"
s.license = "MIT"
s.authors = { "Tobias Sundstrand" => "[email protected]", "Antoine Cœur" => "" }
s.social_media_url = "https://twitter.com/laptobbe"
s.ios.deployment_target = "6.0"
s.tvos.deployment_target = "9.0"
s.osx.deployment_target = "10.7"
s.source = { :git => "https://github.com/laptobbe/TSMarkdownParser.git", :tag => s.version.to_s }
s.source_files = "TSMarkdownParser/**/*.{h,m}"
s.requires_arc = true
s.ios.framework = 'UIKit'
s.tvos.framework = 'UIKit'
end