jekyll-webawesome 0.24.0 → 0.24.2
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 +12 -0
- data/README.md +10 -2
- data/jekyll-webawesome.gemspec +1 -1
- data/lib/jekyll/webawesome/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 405e4761aa25d97e1948a18cbcba7cf1c7a435e75becfd9eb36e631b8b329763
|
|
4
|
+
data.tar.gz: 12f9a661f4e715583f914d407e13e385d4f635106312fa124d16cb02c966c45e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 504445734e43b61455e7f0dcc0abb06fd6d97535f93d82b40621760f8caa992f635ff13192b033fbbd8184d0c9ddcbdd494ac10efec906f4a4b0bf91177a5e47
|
|
7
|
+
data.tar.gz: 8b8866f26912698e343710811d518f634e766e819543186de58620b705d64f06e88dbe00b457a2bbc71f20f6bec578a45457c3ef7efa7250c5aaa77e9dc5f926
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.24.2] - 2026-07-04
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Bump `markawesome` dependency to `~> 0.18.1`, requiring the engine that fixes horizontal-card body overflow (a multi-block `===horizontal` body — e.g. a heading plus a paragraph — is now wrapped in a single `<div>` so it no longer spills below the card). Tightens the floor from 0.18.0. The examples site drops its horizontal-card CSS workaround now that the engine handles this.
|
|
14
|
+
|
|
15
|
+
## [0.24.1] - 2026-07-04
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Bump `markawesome` dependency to `~> 0.18`, requiring the engine that ships the `TreeTransformer` (`<wa-tree>`) and `RandomContentTransformer` (`<wa-random-content>`). The previous `~> 0.17` already permitted 0.18, so this tightens the floor rather than changing what a fresh install resolves to.
|
|
20
|
+
|
|
9
21
|
## [0.24.0] - 2026-07-04
|
|
10
22
|
|
|
11
23
|
### Added
|
data/README.md
CHANGED
|
@@ -106,7 +106,14 @@ end
|
|
|
106
106
|
|
|
107
107
|
## Live Examples
|
|
108
108
|
|
|
109
|
-
|
|
109
|
+
**🔗 [View the hosted examples site →](https://jannewaren.github.io/jekyll-webawesome/)**
|
|
110
|
+
|
|
111
|
+
A multi-page, navigable demo showing every supported component **side by side** — the
|
|
112
|
+
markawesome markdown on the left, the live Web Awesome component it renders on the right.
|
|
113
|
+
Every example is generated from a single shared dataset (`examples/_data/examples.yaml`),
|
|
114
|
+
so the syntax and the rendered result can never drift.
|
|
115
|
+
|
|
116
|
+
To run it locally:
|
|
110
117
|
|
|
111
118
|
```bash
|
|
112
119
|
cd examples
|
|
@@ -114,7 +121,8 @@ bundle install
|
|
|
114
121
|
bundle exec jekyll serve
|
|
115
122
|
```
|
|
116
123
|
|
|
117
|
-
Then visit `http://localhost:4000
|
|
124
|
+
Then visit `http://localhost:4000/jekyll-webawesome/` to see all components rendered with
|
|
125
|
+
Web Awesome styling.
|
|
118
126
|
|
|
119
127
|
> **Note**: All components support dual syntax. You can use either the primary syntax (shown in examples below) or the alternative `:::wa-component` syntax.
|
|
120
128
|
|
data/jekyll-webawesome.gemspec
CHANGED
|
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
|
|
|
33
33
|
spec.require_paths = ['lib']
|
|
34
34
|
|
|
35
35
|
spec.add_dependency 'jekyll', '>= 3.7', '< 5.0'
|
|
36
|
-
spec.add_dependency 'markawesome', '~> 0.
|
|
36
|
+
spec.add_dependency 'markawesome', '~> 0.18.1'
|
|
37
37
|
|
|
38
38
|
spec.add_development_dependency 'rake', '~> 13.0'
|
|
39
39
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-webawesome
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.24.
|
|
4
|
+
version: 0.24.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Janne Waren
|
|
@@ -35,14 +35,14 @@ dependencies:
|
|
|
35
35
|
requirements:
|
|
36
36
|
- - "~>"
|
|
37
37
|
- !ruby/object:Gem::Version
|
|
38
|
-
version:
|
|
38
|
+
version: 0.18.1
|
|
39
39
|
type: :runtime
|
|
40
40
|
prerelease: false
|
|
41
41
|
version_requirements: !ruby/object:Gem::Requirement
|
|
42
42
|
requirements:
|
|
43
43
|
- - "~>"
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
|
-
version:
|
|
45
|
+
version: 0.18.1
|
|
46
46
|
- !ruby/object:Gem::Dependency
|
|
47
47
|
name: rake
|
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|