jekyll_pre 1.1.6 → 1.1.7
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 +3 -1
- data/lib/jekyll_pre/version.rb +1 -1
- data/lib/jekyll_pre.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97df025cc0565235360a3c42053ed994e5f33968145eef4008ae5b27a8df61fa
|
|
4
|
+
data.tar.gz: d8c1eba16949515b28e7696865307da8ba8e150d807f466f45e32322f1786576
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 03bb017f63fe8cf7b780065f10e248727f4047c031c0c5d74f4a96721b95c3a4e30ba9288dc9ac176b5eeff4efb2a454e412da28a58a7489c246529fb2335ea4
|
|
7
|
+
data.tar.gz: 4fb5fd78dde215a9639438095fddae46c053f396edcd77cbd42662d9f3250c32928349effecc17688d377f2f09bab140f56c6af16cf061801d15667849ed2ebc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
## 1.1.7
|
|
2
|
+
* Fixed `noselect` tag content handling.
|
|
3
|
+
|
|
1
4
|
## 1.1.6
|
|
2
5
|
* Added `jekyll_plugin_support` as a dependency.
|
|
3
6
|
|
|
4
|
-
|
|
5
7
|
## 1.1.5
|
|
6
8
|
* Added `class` and `style` options to allow for specifying additional CSS classes and inline CSS
|
|
7
9
|
* Added `clear` option to ensure no images overlap the pre output
|
data/lib/jekyll_pre/version.rb
CHANGED
data/lib/jekyll_pre.rb
CHANGED
|
@@ -87,7 +87,8 @@ end
|
|
|
87
87
|
# Also, space before the closing percent is signficant %}"""
|
|
88
88
|
class UnselectableTag < JekyllSupport::JekyllTag
|
|
89
89
|
def render_impl
|
|
90
|
-
text = @
|
|
90
|
+
text = @argument_string
|
|
91
|
+
text = '$ ' if text.nil? || text.empty?
|
|
91
92
|
"<span class='unselectable'>#{text}</span>"
|
|
92
93
|
end
|
|
93
94
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll_pre
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Slinn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-02-
|
|
11
|
+
date: 2023-02-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|