File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project try to adheres to [Semantic Versioning](https://semver.org/).
66Go to the ` v2 ` branch to see the changelog of Lume 2.
77Go to the ` v1 ` branch to see the changelog of Lume 1.
88
9+ ## [ 3.0.12] - Unreleased
10+ ### Fixed
11+ - ` feed ` plugin: revert changes introduced in 3.0.7 (Use ` textContent ` instead of ` innerHTML ` to get values using CSS selectors).
12+
913## [ 3.0.11] - 2025-09-25
1014### Added
1115- Support for ` gh: ` specifiers in Lightningcss, Postcss and Tailwindcss.
@@ -259,6 +263,7 @@ Go to the `v1` branch to see the changelog of Lume 1.
259263[ #782 ] : https://github.com/lumeland/lume/issues/782
260264[ #785 ] : https://github.com/lumeland/lume/issues/785
261265
266+ [ 3.0.12 ] : https://github.com/lumeland/lume/compare/v3.0.11...HEAD
262267[ 3.0.11 ] : https://github.com/lumeland/lume/compare/v3.0.10...v3.0.11
263268[ 3.0.10 ] : https://github.com/lumeland/lume/compare/v3.0.9...v3.0.10
264269[ 3.0.9 ] : https://github.com/lumeland/lume/compare/v3.0.8...v3.0.9
Original file line number Diff line number Diff line change @@ -93,5 +93,5 @@ function queryCss(query: string, document?: Document) {
9393 return document ?. querySelector ( query ) ?. getAttribute ( name ) ;
9494 }
9595
96- return document ?. querySelector ( query ) ?. textContent ;
96+ return document ?. querySelector ( query ) ?. innerHTML ;
9797}
You can’t perform that action at this time.
0 commit comments