bridgetown_markdown_lazylinks 0.2.0 → 0.2.1
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/lib/bridgetown_markdown_lazylinks/version.rb +1 -1
- data/lib/bridgetown_markdown_lazylinks.rb +9 -0
- 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: 86e6cb9298548d242ddb0b0019dd56e9ee5a8289ee887537d8c32fd3dd9d6d33
|
|
4
|
+
data.tar.gz: 4b182e8ef852ed145a3d15a6de43c929e42d9eca32497d5476b22d300efb31d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1055b153830c96dfdfe461e1742c28ff5291c1feaa0b3f60cc69f036e45dda52435717c7e4a2fa255d8a8db28428523068b1870149e1ada525ec7f7cf0ef23b2
|
|
7
|
+
data.tar.gz: a84e40e426ff56b0446c3841cf7070d1d8691bddfb65863d06798639a9838e6ef5fa52e2f5857879e233b6b8f2ca4a0c370a49e52cfdabe18332a37e1a76d0d7
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.1] - 2023-06-19
|
|
11
|
+
|
|
12
|
+
- add a plugin initializer
|
|
13
|
+
|
|
10
14
|
## [0.2.0] - 2023-06-17
|
|
11
15
|
|
|
12
16
|
- use of cache API to speed up site generation
|
|
@@ -18,3 +22,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
18
22
|
[Unreleased]: https://github.com/akarzim/bridgetown_markdown_lazylinks/tree/main
|
|
19
23
|
[0.1.0]: https://github.com/akarzim/bridgetown_markdown_lazylinks/releases/tag/v0.1.0
|
|
20
24
|
[0.2.0]: https://github.com/akarzim/bridgetown_markdown_lazylinks/releases/tag/v0.2.0
|
|
25
|
+
[0.2.1]: https://github.com/akarzim/bridgetown_markdown_lazylinks/releases/tag/v0.2.1
|
|
@@ -2,3 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
require "bridgetown"
|
|
4
4
|
require "bridgetown_markdown_lazylinks/converter"
|
|
5
|
+
|
|
6
|
+
# Mandatory plugin initializer
|
|
7
|
+
#
|
|
8
|
+
# @see https://github.com/bridgetownrb/bridgetown/issues/769#issuecomment-1596520674
|
|
9
|
+
#
|
|
10
|
+
# @param config [Bridgetown::Configuration::ConfigurationDSL]
|
|
11
|
+
Bridgetown.initializer :bridgetown_markdown_lazylinks do |_|
|
|
12
|
+
# noop
|
|
13
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bridgetown_markdown_lazylinks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- François Vantomme
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-06-
|
|
11
|
+
date: 2023-06-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bridgetown
|