jekyll-wikilinks 0.0.11 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 19fe7bb2a769e61e5d1d554bdbfd2553d7e8359800d06ed58fb5a77e1ed39e60
|
|
4
|
+
data.tar.gz: cc5a57fd28b83455523a2e5a67f1f5e9f3a6a2d335e6bc72b55650fc05aa836b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e24fd21d6c63de04a1e929f0c3cdb5e040643ff2cd1d1cafa4f8f6caf8f067ff96121ee276876f3f43b5f6b63825fe05bc0b2f7dddfd6ceff3f0b92024a8ab0
|
|
7
|
+
data.tar.gz: 2883023cd22018b3d3b8bc76d5960b98c3e906021488cf3928914b9a16568b69b45e08782a909568a8ab851b806ec182ff89e3be7f14b7d491d6a8e34e209d6e
|
|
@@ -12,7 +12,7 @@ module Jekyll
|
|
|
12
12
|
SUPPORTED_IMG_FORMATS = Set.new(['.png', '.jpg', '.gif', '.psd', '.svg'])
|
|
13
13
|
|
|
14
14
|
# wikilink constants
|
|
15
|
-
|
|
15
|
+
REGEX_LINK_LEFT = /\[\[/
|
|
16
16
|
REGEX_LINK_RIGHT = /\]\]/
|
|
17
17
|
REGEX_LINK_EMBED = /(?<embed>\!)/
|
|
18
18
|
REGEX_LINK_TYPE = /\s*::\s*/
|
|
@@ -7,7 +7,7 @@ module Jekyll
|
|
|
7
7
|
# wikilink classes know everything about the original markdown syntax and its semantic meaning
|
|
8
8
|
|
|
9
9
|
class WikiLinkBlock
|
|
10
|
-
|
|
10
|
+
attr_reader :link_type, :filenames
|
|
11
11
|
|
|
12
12
|
# parameters ordered by appearance in regex
|
|
13
13
|
def initialize(doc_mngr, context_filename, link_type, bullet_type=nil)
|
|
@@ -136,7 +136,7 @@ module Jekyll
|
|
|
136
136
|
end
|
|
137
137
|
|
|
138
138
|
class WikiLinkInline
|
|
139
|
-
|
|
139
|
+
attr_reader :link_type, :filename, :header_txt, :block_id
|
|
140
140
|
|
|
141
141
|
FILE_PATH = "file_path"
|
|
142
142
|
FILENAME = "filename"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-wikilinks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- manunamz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-04-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1.
|
|
33
|
+
version: 1.13.3
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 1.
|
|
40
|
+
version: 1.13.3
|
|
41
41
|
description:
|
|
42
42
|
email:
|
|
43
43
|
- manunamz@pm.me
|