jekyll-webawesome 0.14.0 → 0.15.0
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 +16 -0
- data/README.md +15 -1
- 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: eed7bec14cb14b78a96929ed9674a7863027188e5ddd9135ebad4754098f99ce
|
|
4
|
+
data.tar.gz: 5e1b26bd64f32c5bd956745dd3c557acf14fdf79ede90dfced47e7166c423241
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f78a369900c6b38547a2431dab95ee5c2eb0a342ab7390f5577d282aa38e9acd1f96102f71c2650785eede96a3dfde10f99b82e0881471c17c4306137d8db81
|
|
7
|
+
data.tar.gz: 0d9dd06c86ff39b0c37706e2e4d392683cc3d0b0095ceab5b373199c2c0b9b43e0c44e2ea9dec9a1ed53b995a35d0e4e1f9d1601ceeaf066d41a3dbbd7c5d136
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
|
|
6
6
|
|
|
7
|
+
## [0.15.0] - 2026-03-12
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **Inline popover syntax** via markawesome 0.9.0: `&&&trigger text >>> popover content&&&` for use within sentences
|
|
12
|
+
- Always renders as link-styled trigger (underlined text)
|
|
13
|
+
- Supports all parameters: placement, `without-arrow`, `distance:N`
|
|
14
|
+
- Plain text content (HTML-escaped, no markdown processing)
|
|
15
|
+
- Multiple inline popovers supported on the same line
|
|
16
|
+
- Inline popover examples added to example site
|
|
17
|
+
- Updated README with inline popover documentation
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Updated `markawesome` dependency to `~> 0.9`
|
|
22
|
+
|
|
7
23
|
## [0.14.0] - 2026-03-12
|
|
8
24
|
|
|
9
25
|
### Changed
|
data/README.md
CHANGED
|
@@ -1180,6 +1180,20 @@ Multiple paragraphs work too.
|
|
|
1180
1180
|
&&&
|
|
1181
1181
|
```
|
|
1182
1182
|
|
|
1183
|
+
#### Inline Syntax
|
|
1184
|
+
|
|
1185
|
+
Popovers can be used inline within a sentence using `&&&trigger text >>> popover content&&&` on a single line. Inline popovers always render as link-styled triggers:
|
|
1186
|
+
|
|
1187
|
+
```markdown
|
|
1188
|
+
Send invoices via &&&Peppol >>> A standardized e-invoicing network&&& to your customers.
|
|
1189
|
+
|
|
1190
|
+
Learn about &&&bottom API keys >>> API keys authenticate your requests&&& in the docs.
|
|
1191
|
+
|
|
1192
|
+
Check &&&right without-arrow distance:5 validation >>> Invoices are validated against business rules&&& before submitting.
|
|
1193
|
+
```
|
|
1194
|
+
|
|
1195
|
+
Parameters (placement, `without-arrow`, `distance:N`) come before the trigger text. Inline popover content is plain text (use block syntax for rich markdown content).
|
|
1196
|
+
|
|
1183
1197
|
#### Alternative Syntax
|
|
1184
1198
|
|
|
1185
1199
|
You can also use the explicit `:::wa-popover` syntax:
|
|
@@ -1197,7 +1211,7 @@ Popover content using the alternative syntax.
|
|
|
1197
1211
|
| Option | Values | Default | Description |
|
|
1198
1212
|
|--------|--------|---------|-------------|
|
|
1199
1213
|
| `placement` | `top`, `bottom`, `left`, `right` | `top` | Where the popover appears |
|
|
1200
|
-
| `link` | keyword | off | Renders trigger as underlined text instead of button |
|
|
1214
|
+
| `link` | keyword | off (always on for inline) | Renders trigger as underlined text instead of button |
|
|
1201
1215
|
| `without-arrow` | keyword | off | Hides the popover arrow |
|
|
1202
1216
|
| `distance:N` | number (pixels) | (default) | Distance between trigger and popover |
|
|
1203
1217
|
|
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.9'
|
|
37
37
|
|
|
38
38
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
|
39
39
|
spec.add_development_dependency 'rake', '~> 13.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.
|
|
4
|
+
version: 0.15.0
|
|
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: '0.
|
|
38
|
+
version: '0.9'
|
|
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: '0.
|
|
45
|
+
version: '0.9'
|
|
46
46
|
- !ruby/object:Gem::Dependency
|
|
47
47
|
name: bundler
|
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|