jekyll_from_to_until 1.0.5 → 1.0.6
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +1 -1
- data/lib/jekyll_from_to_until/version.rb +1 -1
- data/lib/jekyll_from_to_until.rb +107 -109
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9831e3896befd48a89069726c44c2f1c724c890c4b63fedf398ed54259ecd889
|
4
|
+
data.tar.gz: e0401ec8f430b9cfabb6bb13cf3f77d179aadeca1c7ae1c3fc76357c575afdb7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4092ea3fa73c237a380573c942be5ae11191af3704f277a3ec51430c0cebbc03a242a47a7d06eb3193cfe3e8167d6279746271b5bf79f358b50a644e5d01d23
|
7
|
+
data.tar.gz: 336d908450a37b2239e9ec3f31999b975466769648cc443d4576de8f7e3f89e973d02f3e03442bee571ab7ff560a036d7ffa1532f4442ac70ee8d87803406ac9
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -354,7 +354,7 @@ mslinn_aws.tar
|
|
354
354
|
### Encoding Special Characters
|
355
355
|
|
356
356
|
Special characters can be specified as HTML entities.
|
357
|
-
For example, `}` is `Open parenthesis. Belle par. A parent. 5 Resulting. OK. }`.
|
357
|
+
For example, `}` is `Open parenthesis. Belle par. A parent. 5 Resulting. OK. OK, so now what }`.
|
358
358
|
|
359
359
|
```html
|
360
360
|
{{ css | from: '.error' | to: '}' | strip }}
|
data/lib/jekyll_from_to_until.rb
CHANGED
@@ -9,132 +9,130 @@ end
|
|
9
9
|
|
10
10
|
CALLED_FROM_JEKYLL = !$LOADED_FEATURES.grep(/.*liquid.rb/).empty?
|
11
11
|
|
12
|
-
module
|
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
|
-
result += line if matched
|
39
|
-
end
|
40
|
-
result
|
12
|
+
module FromToUntil
|
13
|
+
@logger = if CALLED_FROM_JEKYLL
|
14
|
+
require 'liquid'
|
15
|
+
require 'jekyll_plugin_logger'
|
16
|
+
PluginMetaLogger.instance.new_logger "FromToUntil", PluginMetaLogger.instance.config
|
17
|
+
else
|
18
|
+
require 'logger'
|
19
|
+
Logger.new $stdout
|
20
|
+
end
|
21
|
+
|
22
|
+
# Filters a multiline string, returning the portion beginning with the line that satisfies a regex.
|
23
|
+
# The regex could be enclosed in single quotes, double quotes, or nothing.
|
24
|
+
# @param input_strings [String] The multi-line string to scan
|
25
|
+
# @param regex [String] The regular expression to match against each line of `input_strings` until found
|
26
|
+
# @return [String] The remaining multi-line string
|
27
|
+
# @example Returns remaining lines starting with the line containing the word `module`.
|
28
|
+
# {{ flexible_include '/blog/2020/10/03/jekyll-plugins.html' | from 'module' }}
|
29
|
+
def from(input_strings, regex)
|
30
|
+
return '' unless check_parameters(input_strings, regex)
|
31
|
+
|
32
|
+
regex = remove_quotations(regex.to_s.strip)
|
33
|
+
matched = false
|
34
|
+
result = ''
|
35
|
+
input_strings.each_line do |line|
|
36
|
+
matched = true if !matched && line =~ %r!#{regex}!
|
37
|
+
result += line if matched
|
41
38
|
end
|
39
|
+
result
|
40
|
+
end
|
42
41
|
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
end
|
56
|
-
result
|
42
|
+
# Filters a multiline string, returning the portion from the beginning until and including the line that satisfies a regex.
|
43
|
+
# The regex could be enclosed in single quotes, double quotes, or nothing.
|
44
|
+
# @example Returns lines up to and including the line containing the word `module`.
|
45
|
+
# {{ flexible_include '/blog/2020/10/03/jekyll-plugins.html' | to 'module' }}
|
46
|
+
def to(input_strings, regex)
|
47
|
+
return '' unless check_parameters(input_strings, regex)
|
48
|
+
|
49
|
+
regex = remove_quotations(regex.to_s.strip)
|
50
|
+
result = ''
|
51
|
+
input_strings.each_line do |line|
|
52
|
+
result += line
|
53
|
+
return result if line.match?(%r!#{regex}!)
|
57
54
|
end
|
55
|
+
result
|
56
|
+
end
|
58
57
|
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
result += line
|
72
|
-
end
|
73
|
-
result
|
74
|
-
end
|
58
|
+
# Filters a multiline string, returning the portion from the beginning until but not including the line that satisfies a regex.
|
59
|
+
# The regex could be enclosed in single quotes, double quotes, or nothing.
|
60
|
+
# @example Returns lines up to but not including the line containing the word `module`.
|
61
|
+
# {{ flexible_include '/blog/2020/10/03/jekyll-plugins.html' | until 'module' }}
|
62
|
+
def until(input_strings, regex)
|
63
|
+
return '' unless check_parameters(input_strings, regex)
|
64
|
+
|
65
|
+
regex = remove_quotations(regex.to_s.strip)
|
66
|
+
result = ''
|
67
|
+
input_strings.each_line do |line|
|
68
|
+
return result if line.match?(%r!#{regex}!)
|
75
69
|
|
76
|
-
|
70
|
+
result += line
|
71
|
+
end
|
72
|
+
result
|
73
|
+
end
|
77
74
|
|
78
|
-
|
79
|
-
if input_strings.nil? || input_strings.empty?
|
80
|
-
@logger.warn { "Warning: Plugin 'from' received no input for regex #{regex}." }
|
81
|
-
return false
|
82
|
-
end
|
75
|
+
private if CALLED_FROM_JEKYLL
|
83
76
|
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
end
|
89
|
-
true
|
77
|
+
def check_parameters(input_strings, regex)
|
78
|
+
if input_strings.nil? || input_strings.empty?
|
79
|
+
@logger.warn { "Warning: Plugin 'from' received no input for regex #{regex}." }
|
80
|
+
return false
|
90
81
|
end
|
91
82
|
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
83
|
+
regex = regex.to_s
|
84
|
+
if regex.nil? || regex.empty?
|
85
|
+
@logger.warn { "Warning: Plugin 'from' received no regex for input #{input_strings}." }
|
86
|
+
return false
|
96
87
|
end
|
88
|
+
true
|
89
|
+
end
|
97
90
|
|
98
|
-
|
91
|
+
def remove_quotations(str)
|
92
|
+
str = str.slice(1..-2) if (str.start_with?('"') && str.end_with?('"')) ||
|
93
|
+
(str.start_with?("'") && str.end_with?("'"))
|
94
|
+
str
|
99
95
|
end
|
100
96
|
|
101
|
-
|
102
|
-
|
103
|
-
def from(input_strings, regex)
|
104
|
-
input_strings = extra_decode HTMLEntities.new.decode input_strings
|
105
|
-
regex = extra_decode HTMLEntities.new.decode regex
|
106
|
-
FromToUntil.from(input_strings, regex) # method forwarding
|
107
|
-
end
|
97
|
+
module_function :from, :to, :until, :check_parameters, :remove_quotations
|
98
|
+
end
|
108
99
|
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
100
|
+
# See https://www.mslinn.com/jekyll/10400-jekyll-plugin-template-collection.html#module_function
|
101
|
+
module FromToUntilFilter
|
102
|
+
def from(input_strings, regex)
|
103
|
+
input_strings = extra_decode HTMLEntities.new.decode input_strings
|
104
|
+
regex = extra_decode HTMLEntities.new.decode regex
|
105
|
+
FromToUntil.from(input_strings, regex) # method forwarding
|
106
|
+
end
|
114
107
|
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
108
|
+
def to(input_strings, regex)
|
109
|
+
input_strings = extra_decode HTMLEntities.new.decode input_strings
|
110
|
+
regex = extra_decode HTMLEntities.new.decode regex
|
111
|
+
FromToUntil.to(input_strings, regex) # method forwarding
|
112
|
+
end
|
120
113
|
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
.gsub('(', '(')
|
126
|
-
.gsub(')', ')')
|
127
|
-
.gsub('&lparen;', '(')
|
128
|
-
.gsub('&rparen;', ')')
|
129
|
-
.gsub('[', '[')
|
130
|
-
.gsub(']', ']')
|
131
|
-
.gsub('[', '[')
|
132
|
-
.gsub(']', ']')
|
133
|
-
end
|
114
|
+
def until(input_strings, regex)
|
115
|
+
input_strings = extra_decode HTMLEntities.new.decode input_strings
|
116
|
+
regex = extra_decode HTMLEntities.new.decode regex
|
117
|
+
FromToUntil.until(input_strings, regex) # method forwarding
|
134
118
|
end
|
135
119
|
|
136
|
-
|
137
|
-
|
138
|
-
|
120
|
+
# HTMLEntities does not support enough HTML entities
|
121
|
+
def extra_decode(line)
|
122
|
+
line.gsub('{', '{')
|
123
|
+
.gsub('}', '}')
|
124
|
+
.gsub('(', '(')
|
125
|
+
.gsub(')', ')')
|
126
|
+
.gsub('&lparen;', '(')
|
127
|
+
.gsub('&rparen;', ')')
|
128
|
+
.gsub('[', '[')
|
129
|
+
.gsub(']', ']')
|
130
|
+
.gsub('[', '[')
|
131
|
+
.gsub(']', ']')
|
139
132
|
end
|
140
133
|
end
|
134
|
+
|
135
|
+
if CALLED_FROM_JEKYLL
|
136
|
+
PluginMetaLogger.instance.info { "Loaded #{JekyllPluginFromToUntilName::PLUGIN_NAME} v#{JekyllFromToUntilVersion::VERSION} plugin." }
|
137
|
+
Liquid::Template.register_filter(FromToUntilFilter)
|
138
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll_from_to_until
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Slinn
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: htmlentities
|
@@ -83,7 +83,7 @@ metadata:
|
|
83
83
|
source_code_uri: https://github.com/mslinn/jekyll_from_to_until
|
84
84
|
post_install_message: |2+
|
85
85
|
|
86
|
-
Thanks for installing jekyll_from_to_until v1.0.
|
86
|
+
Thanks for installing jekyll_from_to_until v1.0.6!
|
87
87
|
|
88
88
|
rdoc_options: []
|
89
89
|
require_paths:
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
99
|
- !ruby/object:Gem::Version
|
100
100
|
version: '0'
|
101
101
|
requirements: []
|
102
|
-
rubygems_version: 3.5.
|
102
|
+
rubygems_version: 3.5.23
|
103
103
|
signing_key:
|
104
104
|
specification_version: 4
|
105
105
|
summary: 'This Jekyll plugin provides 3 filters that return portions of a multiline
|