ultimate-jekyll-manager 1.9.3 → 1.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.
- package/CHANGELOG.md +6 -0
- package/PROGRESS.md +5 -2
- package/dist/assets/js/pages/blog/post.js +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
14
14
|
- `Fixed` for any bug fixes.
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
|
+
---
|
|
18
|
+
## [1.9.4] - 2026-06-20
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- **Blog post ads no longer render inside blockquotes.** Ad insertion now filters out `<p>` elements inside `<blockquote>`, `<details>`, and `<figure>` so ads only appear between top-level content blocks.
|
|
22
|
+
|
|
17
23
|
---
|
|
18
24
|
## [1.9.3] - 2026-06-18
|
|
19
25
|
|
package/PROGRESS.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* **Goal:** FormManager disabled-state refactor (snapshot-and-restore)
|
|
6
6
|
* **Current Phase:** Phase 1 — implementation + tests complete, docs pending
|
|
7
7
|
* **Priority:** Medium
|
|
8
|
-
* **Last Updated:** 2026-06-
|
|
9
|
-
* **Notes:** FM disabled-state refactor done + comprehensive FM test suite added (110 tests total, up from 80).
|
|
8
|
+
* **Last Updated:** 2026-06-20 11:03 PM PDT
|
|
9
|
+
* **Notes:** FM disabled-state refactor done + comprehensive FM test suite added (110 tests total, up from 80). Blog post ad insertion fix applied (Phase 2). Docs (javascript-libraries.md, CHANGELOG) still need updating before shipping.
|
|
10
10
|
|
|
11
11
|
## Active Task List
|
|
12
12
|
* [ ] Phase 1: FormManager disabled-state snapshot-and-restore
|
|
@@ -20,5 +20,8 @@
|
|
|
20
20
|
* [ ] Task 1.8: Update CHANGELOG with the change
|
|
21
21
|
* [ ] Task 1.9: Ship (commit, push, publish)
|
|
22
22
|
|
|
23
|
+
* [x] Phase 2: Fix blog post ad insertion inside blockquotes
|
|
24
|
+
* [x] Task 2.1: Filter out `<p>` elements inside `<blockquote>`, `<details>`, `<figure>` from ad insertion candidates in `post.js`
|
|
25
|
+
|
|
23
26
|
## Completed Task List
|
|
24
27
|
* [x] Phase 0: v1.9.0 release — MCP OAuth flow + CDP debugging docs + dev-URL updates
|
|
@@ -29,8 +29,9 @@ function insertBlogPostAds() {
|
|
|
29
29
|
const adLayout = 'in-article';
|
|
30
30
|
const adFormat = 'fluid';
|
|
31
31
|
|
|
32
|
-
// Get all paragraphs
|
|
33
|
-
const $paragraphs = Array.from($article.querySelectorAll('p'))
|
|
32
|
+
// Get all top-level paragraphs (exclude those inside blockquotes, details, etc.)
|
|
33
|
+
const $paragraphs = Array.from($article.querySelectorAll('p'))
|
|
34
|
+
.filter(p => !p.closest('blockquote, details, figure'));
|
|
34
35
|
if ($paragraphs.length < 3) {
|
|
35
36
|
console.log('[Blog Post] Not enough paragraphs for ad insertion');
|
|
36
37
|
return;
|