1 Star 0 Fork 0

夏天的西瓜/CocoaMarkdown

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CocoaMarkdown.podspec 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
Pod::Spec.new do |s|
s.name = 'CocoaMarkdown'
s.version = '1.0'
s.summary = 'Markdown parsing and rendering for iOS and OS X'
s.description = "CocoaMarkdown aims to solve two primary problems better than existing libraries:
More flexibility. CocoaMarkdown allows you to define custom parsing hooks or even traverse the Markdown AST using the low-level API.
Efficient NSAttributedString creation for easy rendering on iOS and OS X. Most existing libraries just generate HTML from the Markdown, which is not a convenient representation to work with in native apps."
s.homepage = 'https://github.com/indragiek/CocoaMarkdown'
s.license = 'MIT'
s.author = "Indragie Karunaratne"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source = { :git => 'https://github.com/indragiek/CocoaMarkdown.git' }
s.source_files = 'CocoaMarkdown'
s.private_header_files = 'CocoaMarkdown/*_Private.h'
s.ios.framework = 'UIKit'
s.osx.framework = 'Cocoa'
s.requires_arc = true
s.dependency 'cmark', '~> 0.21.0'
s.dependency 'Ono', '~> 1.1.3'
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mrxir/CocoaMarkdown.git
git@gitee.com:mrxir/CocoaMarkdown.git
mrxir
CocoaMarkdown
CocoaMarkdown
master

搜索帮助