Skip to content

Commit 4aab9e5

Browse files
committed
fix feed plugin
1 parent 06c6e75 commit 4aab9e5

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project try to adheres to [Semantic Versioning](https://semver.org/).
66
Go to the `v2` branch to see the changelog of Lume 2.
77
Go 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

core/utils/data_values.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)