ZMediumToMarkdown 2.1.1 → 2.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e7f829bce1b8eb7ae5a944c83c4f41cccae4822ac367aa2e7a0a71c9ddd68fce
4
- data.tar.gz: 0f2dbff52a7852f93865e343e12ef26724c96d9a0833dd97d4a73c7e4441219a
3
+ metadata.gz: ef2cfaaf84fa78546e7a2206881c0e2939d069c5deb2495164ca1c302386f89e
4
+ data.tar.gz: 815b6ecfa9c52741e17493904697757baeaa5107b276fce63e6641da59381b11
5
5
  SHA512:
6
- metadata.gz: 832f63529eb7e512a7cbd8e53284c2a86f18232ea71aabbbbe1d480ac42e6efc9f8c3dccdf262abc96ac18d96ce48685784e1b5961c8191eea61b258f68c543e
7
- data.tar.gz: 026b9d34d815cc7a131b7e20c513efa2b8e0767a23ba9a8da6cd8da7cb6dbeda79b327c288729b738b085bcfe596c15aa6c4fd789350d607893811a84713f120
6
+ metadata.gz: 1fc077211ea5c2adf6bdec8a1ad685706b2d9ba0a94760d9ad65c6ef4b39a3e8d68a2a5aca441c9ff986006bf91a15e51eb583690268014809014fcd01ee7c88
7
+ data.tar.gz: d86bb626242e376406b37704efa2204337226ab712786966dba7dfbf5b1c6d6be9017f1dfe4d7bae514f9a69a87bbd8d23a88cad1f05723adbc7b7f41da929fe
data/lib/Helper.rb CHANGED
@@ -99,17 +99,22 @@ class Helper
99
99
  end
100
100
 
101
101
  def self.createPostInfo(postInfo, isForJekyll)
102
- title = postInfo.title.gsub("[","")
103
- title = title.gsub("]","")
102
+ title = postInfo.title&.gsub("[","")
103
+ title = title&.gsub("]","")
104
+
105
+ tags = ""
106
+ if !postInfo.tags.nil? && postInfo.tags.length > 0
107
+ tags = "\"#{postInfo.tags.map { |tag| tag&.gsub("\"", "\\\"") }.join("\",\"")}\""
108
+ end
104
109
 
105
110
  result = "---\n"
106
- result += "title: #{title}\n"
107
- result += "author: #{postInfo.creator}\n"
111
+ result += "title: \"#{title&.gsub("\"", "\\\"")}\"\n"
112
+ result += "author: \"#{postInfo.creator&.gsub("\"", "\\\"")}\"\n"
108
113
  result += "date: #{postInfo.firstPublishedAt.strftime('%Y-%m-%dT%H:%M:%S.%L%z')}\n"
109
114
  result += "last_modified_at: #{postInfo.latestPublishedAt.strftime('%Y-%m-%dT%H:%M:%S.%L%z')}\n"
110
- result += "categories: #{postInfo.collectionName}\n"
111
- result += "tags: [#{postInfo.tags.join(",")}]\n"
112
- result += "description: #{postInfo.description}\n"
115
+ result += "categories: \"#{postInfo.collectionName&.gsub("\"", "\\\"")}\"\n"
116
+ result += "tags: [#{tags}]\n"
117
+ result += "description: \"#{postInfo.description&.gsub("\"", "\\\"")}\"\n"
113
118
  if !postInfo.previewImage.nil?
114
119
  result += "image:\r\n"
115
120
  result += " path: #{postInfo.previewImage}\r\n"
@@ -15,7 +15,7 @@ class MIXTAPEEMBEDParser < Parser
15
15
  if paragraph.type == 'MIXTAPE_EMBED'
16
16
  if !paragraph.mixtapeMetadata.nil? && !paragraph.mixtapeMetadata.href.nil?
17
17
  ogImageURL = Helper.fetchOGImage(paragraph.mixtapeMetadata.href)
18
- if !ogImageURL.nil?
18
+ if !ogImageURL.nil? && ogImageURL != ""
19
19
  jekyllOpen = ""
20
20
  if isForJekyll
21
21
  jekyllOpen = "{:target=\"_blank\"}"
@@ -238,7 +238,7 @@ class ZMediumFetcher
238
238
 
239
239
  if File.file?(absolutePath)
240
240
  lines = File.foreach(absolutePath).first(15)
241
- if lines.first.start_with?("---")
241
+ if lines.first&.start_with?("---")
242
242
  dateLine = lines.select { |line| line.start_with?("last_modified_at:") }.first
243
243
  if !dateLine.nil?
244
244
  fileLatestPublishedAt = Time.parse(dateLine[/^(last_modified_at:)\s+(\S*)/, 2]).to_i
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ZMediumToMarkdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - ZhgChgLi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-12 00:00:00.000000000 Z
11
+ date: 2023-03-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri