-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathGMarkdown.podspec
More file actions
52 lines (43 loc) · 1.91 KB
/
GMarkdown.podspec
File metadata and controls
52 lines (43 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Pod::Spec.new do |s|
s.name = 'GMarkdown'
s.version = '0.1.1'
s.summary = 'A powerful and versatile Markdown rendering library for Swift developers'
s.description = <<-DESC
GMarkdown is a powerful and versatile Markdown rendering library designed for Swift developers.
Built on top of the swift-markdown parser, GMarkdown offers pure native rendering capabilities,
ensuring seamless integration and high performance for your iOS applications.
Features:
- Pure Native Rendering
- Rich Text Support
- Image Rendering
- Code Blocks with syntax highlighting
- Tables
- LaTeX Math Formulas
- Mermaid Diagrams
- HTML Preview
DESC
s.homepage = 'https://github.com/GIKICoder/GMarkdown.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'GIKICoder' => 'giki.biu@gmail.com' }
s.source = { :git => 'https://github.com/GIKICoder/GMarkdown.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.swift_version = '5.0'
s.source_files = 'Sources/**/*.swift'
# Resource files from Assets directory
s.resources = [
'Sources/Assets/**/*'
]
# Dependencies
s.dependency 'swift-markdown-pod', '1.0.1'
s.dependency 'SwiftMath-pod', '2.0.1.pod'
s.dependency 'MathJaxSwift-pod', '3.2.2'
s.dependency 'MPITextKit'
# Frameworks
s.frameworks = 'UIKit', 'Foundation', 'WebKit', 'JavaScriptCore', 'Photos'
# Additional settings
s.requires_arc = true
# Compiler conditions for resource loading
s.pod_target_xcconfig = {
'SWIFT_ACTIVE_COMPILATION_CONDITIONS' => 'COCOAPODS'
}
end