motion-markdown-it 8.4.1.2 → 9.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -2
- data/lib/motion-markdown-it/common/entities.rb +3 -0
- data/lib/motion-markdown-it/common/utils.rb +43 -7
- data/lib/motion-markdown-it/helpers/parse_link_destination.rb +2 -2
- data/lib/motion-markdown-it/parser_core.rb +3 -3
- data/lib/motion-markdown-it/ruler.rb +3 -3
- data/lib/motion-markdown-it/rules_block/fence.rb +3 -1
- data/lib/motion-markdown-it/rules_block/list.rb +28 -4
- data/lib/motion-markdown-it/rules_block/state_block.rb +7 -5
- data/lib/motion-markdown-it/rules_core/normalize.rb +2 -2
- data/lib/motion-markdown-it/rules_core/replacements.rb +1 -1
- data/lib/motion-markdown-it/rules_inline/backticks.rb +3 -1
- data/lib/motion-markdown-it/rules_inline/balance_pairs.rb +13 -3
- data/lib/motion-markdown-it/rules_inline/entity.rb +1 -1
- data/lib/motion-markdown-it/rules_inline/state_inline.rb +3 -3
- data/lib/motion-markdown-it/rules_inline/text_collapse.rb +10 -2
- data/lib/motion-markdown-it/version.rb +1 -3
- data/spec/spec_helper.rb +2 -1
- metadata +11 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2731c7d392eb70c89a0b583ff854d85ea277e299f86a6a3f02502427b4effdda
|
4
|
+
data.tar.gz: 25c49dfc9916421e4ea44878dd499c4e535e26d106f2663a594911002dd6cb21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8a8d408d9a62779180b1176404c6f0e2f0616e0fd45e95e068eadec6780b1eb68268cda6a4339cd188e442e276f757d5cc54faa6f94eeb18ed5ac8992cbe410
|
7
|
+
data.tar.gz: f6b204daacb84fb2bd888d1246aab6882810d1c85bf5444bc92a2bc1dc837f750ec42f2df6a806550ae7822f516e2ebfddecbd386ae512f57ebf6105afb53edd
|
data/README.md
CHANGED
@@ -1,11 +1,13 @@
|
|
1
1
|
# motion-markdown-it
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/motion-markdown-it.svg)](http://badge.fury.io/rb/motion-markdown-it)
|
4
|
-
[![Build Status](https://
|
4
|
+
[![Build Status](https://github.com/digitalmoksha/motion-markdown-it/actions/workflows/ci.yml/badge.svg)](https://github.com/digitalmoksha/motion-markdown-it/actions/workflows/ci.yml)
|
5
5
|
|
6
6
|
Ruby/RubyMotion version of Markdown-it (CommonMark compliant and extendable)
|
7
7
|
|
8
|
-
This gem is a port of the [markdown-it Javascript package](https://github.com/markdown-it/markdown-it) by Vitaly Puzrin and Alex Kocharin.
|
8
|
+
This gem is a port of the [markdown-it Javascript package](https://github.com/markdown-it/markdown-it) by Vitaly Puzrin and Alex Kocharin.
|
9
|
+
|
10
|
+
_Currently synced with markdown-it 9.0.1_
|
9
11
|
|
10
12
|
---
|
11
13
|
|
@@ -3,6 +3,8 @@ module MarkdownIt
|
|
3
3
|
|
4
4
|
# TODO this list needs to be brought up to same level as the WC3 document
|
5
5
|
# http://www.w3.org/TR/xml-entity-names/byalpha.html
|
6
|
+
# Consider pulling in https://github.com/fb55/entities/blob/master/maps/entities.json,
|
7
|
+
# is kept up to date
|
6
8
|
#------------------------------------------------------------------------------
|
7
9
|
class HTMLEntities
|
8
10
|
|
@@ -626,6 +628,7 @@ module MarkdownIt
|
|
626
628
|
'nearr' => 0x2197, # ↗ NORTH EAST ARROW
|
627
629
|
'nequiv' => 0x2262, # ≢ NOT IDENTICAL TO
|
628
630
|
'nexist' => 0x2204, # ∄ THERE DOES NOT EXIST
|
631
|
+
'ngE' => '≧̸', # ≧̸ from https://github.com/fb55/entities/blob/master/maps/entities.json
|
629
632
|
'nge' => 0x2271, # ≱ dup NEITHER GREATER-THAN NOR EQUAL TO
|
630
633
|
'nges' => 0x2271, # ≱ dup skip NEITHER GREATER-THAN NOR EQUAL TO
|
631
634
|
'Ngr' => 0x039d, # Ν dup skip GREEK CAPITAL LETTER NU
|
@@ -48,14 +48,17 @@ module MarkdownIt
|
|
48
48
|
|
49
49
|
#------------------------------------------------------------------------------
|
50
50
|
def fromCodePoint(c)
|
51
|
-
|
51
|
+
# Some html entities are mapped directly as characters rather than code points.
|
52
|
+
# So if we're passed an Integer, convert to character, otherwise just return
|
53
|
+
# the character. For example `≧̸`
|
54
|
+
c.is_a?(Integer) ? c.chr(Encoding::UTF_8) : c
|
52
55
|
end
|
53
56
|
|
54
57
|
#------------------------------------------------------------------------------
|
55
58
|
def fromCharCode(c)
|
56
59
|
c.chr
|
57
60
|
end
|
58
|
-
|
61
|
+
|
59
62
|
#------------------------------------------------------------------------------
|
60
63
|
def charCodeAt(str, ch)
|
61
64
|
str[ch].ord unless str[ch].nil?
|
@@ -216,11 +219,44 @@ module MarkdownIt
|
|
216
219
|
# Hepler to unify [reference labels].
|
217
220
|
#------------------------------------------------------------------------------
|
218
221
|
def normalizeReference(str)
|
219
|
-
#
|
220
|
-
#
|
221
|
-
|
222
|
-
|
222
|
+
# Trim and collapse whitespace
|
223
|
+
#
|
224
|
+
str = str.strip.gsub(/\s+/, ' ')
|
225
|
+
|
226
|
+
# .toLowerCase().toUpperCase() should get rid of all differences
|
227
|
+
# between letter variants.
|
228
|
+
#
|
229
|
+
# Simple .toLowerCase() doesn't normalize 125 code points correctly,
|
230
|
+
# and .toUpperCase doesn't normalize 6 of them (list of exceptions:
|
231
|
+
# İ, ϴ, ẞ, Ω, K, Å - those are already uppercased, but have differently
|
232
|
+
# uppercased versions).
|
233
|
+
#
|
234
|
+
# Here's an example showing how it happens. Lets take greek letter omega:
|
235
|
+
# uppercase U+0398 (Θ), U+03f4 (ϴ) and lowercase U+03b8 (θ), U+03d1 (ϑ)
|
236
|
+
#
|
237
|
+
# Unicode entries:
|
238
|
+
# 0398;GREEK CAPITAL LETTER THETA;Lu;0;L;;;;;N;;;;03B8;
|
239
|
+
# 03B8;GREEK SMALL LETTER THETA;Ll;0;L;;;;;N;;;0398;;0398
|
240
|
+
# 03D1;GREEK THETA SYMBOL;Ll;0;L;<compat> 03B8;;;;N;GREEK SMALL LETTER SCRIPT THETA;;0398;;0398
|
241
|
+
# 03F4;GREEK CAPITAL THETA SYMBOL;Lu;0;L;<compat> 0398;;;;N;;;;03B8;
|
242
|
+
#
|
243
|
+
# Case-insensitive comparison should treat all of them as equivalent.
|
244
|
+
#
|
245
|
+
# But .toLowerCase() doesn't change ϑ (it's already lowercase),
|
246
|
+
# and .toUpperCase() doesn't change ϴ (already uppercase).
|
247
|
+
#
|
248
|
+
# Applying first lower then upper case normalizes any character:
|
249
|
+
# '\u0398\u03f4\u03b8\u03d1'.toLowerCase().toUpperCase() === '\u0398\u0398\u0398\u0398'
|
250
|
+
#
|
251
|
+
# Note: this is equivalent to unicode case folding; unicode normalization
|
252
|
+
# is a different step that is not required here.
|
253
|
+
#
|
254
|
+
# Final result should be uppercased, because it's later stored in an object
|
255
|
+
# (this avoid a conflict with Object.prototype members,
|
256
|
+
# most notably, `__proto__`)
|
257
|
+
#
|
258
|
+
return str.downcase.upcase
|
223
259
|
end
|
224
260
|
end
|
225
261
|
end
|
226
|
-
end
|
262
|
+
end
|
@@ -15,7 +15,7 @@ module MarkdownIt
|
|
15
15
|
pos += 1
|
16
16
|
while (pos < max)
|
17
17
|
code = charCodeAt(str, pos)
|
18
|
-
return result if (code == 0x0A
|
18
|
+
return result if (code == 0x0A) # \n
|
19
19
|
if (code == 0x3E) # >
|
20
20
|
result[:pos] = pos + 1
|
21
21
|
result[:str] = unescapeAll(str.slice((start + 1)...pos))
|
@@ -73,4 +73,4 @@ module MarkdownIt
|
|
73
73
|
end
|
74
74
|
end
|
75
75
|
end
|
76
|
-
end
|
76
|
+
end
|
@@ -8,9 +8,9 @@ module MarkdownIt
|
|
8
8
|
class ParserCore
|
9
9
|
|
10
10
|
attr_accessor :ruler
|
11
|
-
|
11
|
+
|
12
12
|
RULES = [
|
13
|
-
[ 'normalize', lambda { |state| RulesCore::Normalize.
|
13
|
+
[ 'normalize', lambda { |state| RulesCore::Normalize.normalize(state) } ],
|
14
14
|
[ 'block', lambda { |state| RulesCore::Block.block(state) } ],
|
15
15
|
[ 'inline', lambda { |state| RulesCore::Inline.inline(state) } ],
|
16
16
|
[ 'linkify', lambda { |state| RulesCore::Linkify.linkify(state) } ],
|
@@ -43,4 +43,4 @@ module MarkdownIt
|
|
43
43
|
end
|
44
44
|
end
|
45
45
|
end
|
46
|
-
end
|
46
|
+
end
|
@@ -16,7 +16,7 @@
|
|
16
16
|
#------------------------------------------------------------------------------
|
17
17
|
|
18
18
|
module MarkdownIt
|
19
|
-
class Ruler
|
19
|
+
class Ruler
|
20
20
|
|
21
21
|
def initialize
|
22
22
|
# // List of added rules. Each element is:
|
@@ -94,7 +94,7 @@ module MarkdownIt
|
|
94
94
|
# *
|
95
95
|
# * ##### Example
|
96
96
|
# *
|
97
|
-
# * Replace existing
|
97
|
+
# * Replace existing typographer replacement rule with new one:
|
98
98
|
# *
|
99
99
|
# * ```javascript
|
100
100
|
# * var md = require('markdown-it')();
|
@@ -108,7 +108,7 @@ module MarkdownIt
|
|
108
108
|
index = __find__(name)
|
109
109
|
|
110
110
|
raise(StandardError, "Parser rule not found: #{name}") if index == -1
|
111
|
-
|
111
|
+
|
112
112
|
@__rules__[index][:fn] = fn
|
113
113
|
@__rules__[index][:alt] = opt[:alt] || ['']
|
114
114
|
@__cache__ = nil
|
@@ -32,7 +32,9 @@ module MarkdownIt
|
|
32
32
|
markup = state.src.slice(mem...pos)
|
33
33
|
params = state.src.slice(pos...max)
|
34
34
|
|
35
|
-
|
35
|
+
if (marker == 0x60) # `
|
36
|
+
return false if params.include?(fromCharCode(marker))
|
37
|
+
end
|
36
38
|
|
37
39
|
# Since start is found, we can report success here in validation mode
|
38
40
|
return true if silent
|
@@ -109,6 +109,18 @@ module MarkdownIt
|
|
109
109
|
# if it's indented more than 3 spaces, it should be a code block
|
110
110
|
return false if (state.sCount[startLine] - state.blkIndent >= 4)
|
111
111
|
|
112
|
+
# Special case:
|
113
|
+
# - item 1
|
114
|
+
# - item 2
|
115
|
+
# - item 3
|
116
|
+
# - item 4
|
117
|
+
# - this one is a paragraph continuation
|
118
|
+
if (state.listIndent >= 0 &&
|
119
|
+
state.sCount[startLine] - state.listIndent >= 4 &&
|
120
|
+
state.sCount[startLine] < state.blkIndent)
|
121
|
+
return false
|
122
|
+
end
|
123
|
+
|
112
124
|
# limit conditions when list can interrupt
|
113
125
|
# a paragraph (validation mode only)
|
114
126
|
if silent && state.parentType == 'paragraph'
|
@@ -220,11 +232,19 @@ module MarkdownIt
|
|
220
232
|
token.markup = markerCharCode.chr
|
221
233
|
token.map = itemLines = [ startLine, 0 ]
|
222
234
|
|
223
|
-
|
235
|
+
# change current state, then restore it after parser subcall
|
224
236
|
oldTight = state.tight
|
225
237
|
oldTShift = state.tShift[startLine]
|
226
|
-
|
238
|
+
oldSCount = state.sCount[startLine]
|
239
|
+
|
240
|
+
# - example list
|
241
|
+
# ^ listIndent position will be here
|
242
|
+
# ^ blkIndent position will be here
|
243
|
+
#
|
244
|
+
oldListIndent = state.listIndent
|
245
|
+
state.listIndent = state.blkIndent
|
227
246
|
state.blkIndent = indent
|
247
|
+
|
228
248
|
state.tight = true
|
229
249
|
state.tShift[startLine] = contentStart - state.bMarks[startLine]
|
230
250
|
state.sCount[startLine] = offset
|
@@ -250,9 +270,10 @@ module MarkdownIt
|
|
250
270
|
# but we should filter last element, because it means list finish
|
251
271
|
prevEmptyEnd = (state.line - startLine) > 1 && state.isEmpty(state.line - 1)
|
252
272
|
|
253
|
-
state.blkIndent =
|
273
|
+
state.blkIndent = state.listIndent
|
274
|
+
state.listIndent = oldListIndent
|
254
275
|
state.tShift[startLine] = oldTShift
|
255
|
-
state.sCount[startLine] =
|
276
|
+
state.sCount[startLine] = oldSCount
|
256
277
|
state.tight = oldTight
|
257
278
|
|
258
279
|
token = state.push('list_item_close', 'li', -1)
|
@@ -269,6 +290,9 @@ module MarkdownIt
|
|
269
290
|
#
|
270
291
|
break if (state.sCount[nextLine] < state.blkIndent)
|
271
292
|
|
293
|
+
# if it's indented more than 3 spaces, it should be a code block
|
294
|
+
break if (state.sCount[startLine] - state.blkIndent >= 4)
|
295
|
+
|
272
296
|
# fail if terminating block found
|
273
297
|
terminate = false
|
274
298
|
(0...terminatorRules.length).each do |i|
|
@@ -6,7 +6,7 @@ module MarkdownIt
|
|
6
6
|
include MarkdownIt::Common::Utils
|
7
7
|
|
8
8
|
attr_accessor :src, :md, :env, :tokens, :bMarks, :eMarks, :tShift, :sCount, :bsCount
|
9
|
-
attr_accessor :blkIndent, :line, :lineMax, :tight, :parentType, :ddIndent
|
9
|
+
attr_accessor :blkIndent, :line, :lineMax, :tight, :parentType, :ddIndent, :listIndent
|
10
10
|
attr_accessor :level, :result
|
11
11
|
|
12
12
|
#------------------------------------------------------------------------------
|
@@ -39,12 +39,14 @@ module MarkdownIt
|
|
39
39
|
@bsCount = []
|
40
40
|
|
41
41
|
# block parser variables
|
42
|
-
@blkIndent = 0 #
|
42
|
+
@blkIndent = 0 # equired block content indent (for example, if we are
|
43
|
+
# inside a list, it would be positioned after list marker)
|
43
44
|
@line = 0 # line index in src
|
44
45
|
@lineMax = 0 # lines count
|
45
46
|
@tight = false # loose/tight mode for lists
|
46
47
|
@parentType = 'root' # if `list`, block parser stops on two newlines
|
47
48
|
@ddIndent = -1 # indent of the current dd block (-1 if there isn't any)
|
49
|
+
@listIndent = -1 # indent of the current list block (-1 if there isn't any)
|
48
50
|
|
49
51
|
# can be 'blockquote', 'list', 'root', 'paragraph' or 'reference'
|
50
52
|
# used in lists to determine if they interrupt a paragraph
|
@@ -113,9 +115,9 @@ module MarkdownIt
|
|
113
115
|
token = Token.new(type, tag, nesting)
|
114
116
|
token.block = true
|
115
117
|
|
116
|
-
@level -= 1 if nesting < 0
|
118
|
+
@level -= 1 if nesting < 0 # closing tag
|
117
119
|
token.level = @level
|
118
|
-
@level += 1 if nesting > 0
|
120
|
+
@level += 1 if nesting > 0 # opening tag
|
119
121
|
|
120
122
|
@tokens.push(token)
|
121
123
|
return token
|
@@ -236,4 +238,4 @@ module MarkdownIt
|
|
236
238
|
|
237
239
|
end
|
238
240
|
end
|
239
|
-
end
|
241
|
+
end
|
@@ -8,7 +8,7 @@ module MarkdownIt
|
|
8
8
|
NULL_RE = /\u0000/
|
9
9
|
|
10
10
|
#------------------------------------------------------------------------------
|
11
|
-
def self.
|
11
|
+
def self.normalize(state)
|
12
12
|
# Normalize newlines
|
13
13
|
str = state.src.gsub(NEWLINES_RE, "\n")
|
14
14
|
|
@@ -19,4 +19,4 @@ module MarkdownIt
|
|
19
19
|
end
|
20
20
|
end
|
21
21
|
end
|
22
|
-
end
|
22
|
+
end
|
@@ -35,7 +35,9 @@ module MarkdownIt
|
|
35
35
|
if (!silent)
|
36
36
|
token = state.push('code_inline', 'code', 0)
|
37
37
|
token.markup = marker
|
38
|
-
token.content = state.src.slice(pos...matchStart)
|
38
|
+
token.content = state.src.slice(pos...matchStart)
|
39
|
+
.gsub(/\n/, ' ')
|
40
|
+
.gsub(/^ (.+) $/, '\1')
|
39
41
|
end
|
40
42
|
state.pos = matchEnd
|
41
43
|
return true
|
@@ -24,11 +24,21 @@ module MarkdownIt
|
|
24
24
|
currDelim[:end] < 0 &&
|
25
25
|
currDelim[:level] == lastDelim[:level]
|
26
26
|
|
27
|
+
odd_match = false
|
28
|
+
|
27
29
|
# typeofs are for backward compatibility with plugins
|
28
30
|
# not needed: typeof currDelim.length !== 'undefined' &&
|
29
31
|
# typeof lastDelim.length !== 'undefined' &&
|
30
|
-
|
31
|
-
|
32
|
+
if (currDelim[:close] || lastDelim[:open])
|
33
|
+
# from spec:
|
34
|
+
# sum of the lengths [...] must not be a multiple of 3
|
35
|
+
# unless both lengths are multiples of 3
|
36
|
+
if ((currDelim[:length] + lastDelim[:length]) % 3) == 0
|
37
|
+
if (currDelim[:length] % 3 != 0 || lastDelim[:length] % 3 != 0)
|
38
|
+
odd_match = true
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
32
42
|
|
33
43
|
if !odd_match
|
34
44
|
lastDelim[:jump] = i - j
|
@@ -45,4 +55,4 @@ module MarkdownIt
|
|
45
55
|
end
|
46
56
|
end
|
47
57
|
end
|
48
|
-
end
|
58
|
+
end
|
@@ -45,9 +45,9 @@ module MarkdownIt
|
|
45
45
|
pushPending unless @pending.empty?
|
46
46
|
|
47
47
|
token = Token.new(type, tag, nesting);
|
48
|
-
@level -= 1 if nesting < 0
|
48
|
+
@level -= 1 if nesting < 0 # closing tag
|
49
49
|
token.level = @level
|
50
|
-
@level += 1 if nesting > 0
|
50
|
+
@level += 1 if nesting > 0 # opening tag
|
51
51
|
|
52
52
|
@pendingLevel = @level
|
53
53
|
@tokens.push(token)
|
@@ -113,4 +113,4 @@ module MarkdownIt
|
|
113
113
|
end
|
114
114
|
end
|
115
115
|
end
|
116
|
-
end
|
116
|
+
end
|
@@ -1,4 +1,10 @@
|
|
1
|
+
# Clean up tokens after emphasis and strikethrough postprocessing:
|
1
2
|
# Merge adjacent text nodes into one, and re-calculate all token levels
|
3
|
+
#
|
4
|
+
# This is necessary because initially emphasis delimiter markers (*, _, ~)
|
5
|
+
# are treated as their own separate text tokens. Then emphasis rule either
|
6
|
+
# leaves them as text (needed to merge with adjacent text) or turns them
|
7
|
+
# into opening/closing tags (which messes up levels inside).
|
2
8
|
#------------------------------------------------------------------------------
|
3
9
|
module MarkdownIt
|
4
10
|
module RulesInline
|
@@ -12,9 +18,11 @@ module MarkdownIt
|
|
12
18
|
|
13
19
|
last = curr = 0
|
14
20
|
while curr < max
|
15
|
-
# re-calculate levels
|
16
|
-
|
21
|
+
# re-calculate levels after emphasis/strikethrough turns some text nodes
|
22
|
+
# into opening/closing tags
|
23
|
+
level -= 1 if tokens[curr].nesting < 0 # closing tag
|
17
24
|
tokens[curr].level = level
|
25
|
+
level += 1 if tokens[curr].nesting > 0 # opening tag
|
18
26
|
|
19
27
|
if tokens[curr].type == 'text' &&
|
20
28
|
curr + 1 < max &&
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-markdown-it
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 9.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Walker
|
8
8
|
- Vitaly Puzrin
|
9
9
|
- Alex Kocharin
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2023-01-16 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: mdurl-rb
|
@@ -46,28 +46,28 @@ dependencies:
|
|
46
46
|
requirements:
|
47
47
|
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: '
|
49
|
+
version: '4.0'
|
50
50
|
type: :runtime
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - "~>"
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: '
|
56
|
+
version: '4.0'
|
57
57
|
- !ruby/object:Gem::Dependency
|
58
|
-
name:
|
58
|
+
name: motion-expect
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
61
|
- - "~>"
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: '
|
63
|
+
version: '2.0'
|
64
64
|
type: :development
|
65
65
|
prerelease: false
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - "~>"
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version: '
|
70
|
+
version: '2.0'
|
71
71
|
description: Ruby/RubyMotion version of markdown-it
|
72
72
|
email: github@digitalmoksha.com
|
73
73
|
executables: []
|
@@ -141,7 +141,7 @@ homepage: https://github.com/digitalmoksha/motion-markdown-it
|
|
141
141
|
licenses:
|
142
142
|
- MIT
|
143
143
|
metadata: {}
|
144
|
-
post_install_message:
|
144
|
+
post_install_message:
|
145
145
|
rdoc_options: []
|
146
146
|
require_paths:
|
147
147
|
- lib
|
@@ -156,9 +156,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
156
|
- !ruby/object:Gem::Version
|
157
157
|
version: '0'
|
158
158
|
requirements: []
|
159
|
-
|
160
|
-
|
161
|
-
signing_key:
|
159
|
+
rubygems_version: 3.3.23
|
160
|
+
signing_key:
|
162
161
|
specification_version: 4
|
163
162
|
summary: Ruby version markdown-it
|
164
163
|
test_files:
|