markawesome 0.9.3 → 0.9.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 20d0c286b0e4f28b245d541359c98b945881bafe440ec5e595102c125cb59493
4
- data.tar.gz: 774a091780c653c76d111dde625ef89b2db808119bcf72be8cb30140fd2288aa
3
+ metadata.gz: 0ce87485ab7f37e8a96dfabf4d09b95d0fe796cff0ca885eb4aa83a4f013131c
4
+ data.tar.gz: cbe429ce4efdc6227b7f390468496f776d4971d09fb1df4ffc47e1aad22a42f1
5
5
  SHA512:
6
- metadata.gz: bbb4bb808ef77a6f2b16cc8d10451c95d9bdf8f4a5d1e43f93a5743887c626a604fe60b8769fa4a44c18f6c2744167efdbf9736239682ba6a2065b7797a936fe
7
- data.tar.gz: bb55942503875f00151316b6d309ad2fc88407f31de4bcb4da6b5da069b1f961d78a47764916f55c8419a8b85b640732079153350b4ecc5389455fd7305d0d3c
6
+ metadata.gz: ad056dfdf6b8cf4c4ded5634994bfb131dd77979c1c23fc6e9ae19f38ed344a4488a7cee14f1cfd30d54674545c02390ec3fa9676ffb1f5e9d2ebccfc9fb3f0d
7
+ data.tar.gz: fe3945efdacd009afab96a4a3ba215076c7efd9f5c27f6dea59119b1258b0b85e5e48c17703ef06b3f95b5e6b9b74f345acd331d55c1dcd1c79f75bd27caee12
data/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ 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.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.9.4] - 2026-03-13
8
+
9
+ ### Changed
10
+
11
+ - Moved PopoverTransformer earlier in the pipeline (right after LayoutTransformer) so that inline popovers (`&&&trigger >>> content&&&`) work inside cards, callouts, details, and other block containers that markdown-process their body content. Previously, Kramdown would HTML-escape the `&&&` and `>>>` characters before PopoverTransformer had a chance to process them.
12
+
7
13
  ## [0.9.3] - 2026-03-13
8
14
 
9
15
  ### Added
@@ -8,6 +8,7 @@ module Markawesome
8
8
  class Transformer
9
9
  def self.process(content, options = {})
10
10
  content = LayoutTransformer.transform(content)
11
+ content = PopoverTransformer.transform(content)
11
12
  content = BadgeTransformer.transform(content)
12
13
  content = ButtonTransformer.transform(content)
13
14
  content = CalloutTransformer.transform(content)
@@ -24,7 +25,6 @@ module Markawesome
24
25
  end
25
26
 
26
27
  content = DialogTransformer.transform(content)
27
- content = PopoverTransformer.transform(content)
28
28
  content = IconTransformer.transform(content)
29
29
  content = TagTransformer.transform(content)
30
30
  TabsTransformer.transform(content)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Markawesome
4
- VERSION = '0.9.3'
4
+ VERSION = '0.9.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: markawesome
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.3
4
+ version: 0.9.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Janne Waren