Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0f8008e
Add append_content_after_closing_tag_on_balanced_or_void_tags method
luisherranz Jan 29, 2024
2c70fb8
Make next_balanced_tag_closer_tag public and add tests
luisherranz Jan 30, 2024
093bb36
Add compat for array_is_list added in WP 6.5
luisherranz Jan 30, 2024
e378aad
Add missing covers in wp-text tests
luisherranz Jan 30, 2024
767b9aa
Minor fixes to the Interactivity API directive processor
luisherranz Jan 30, 2024
106eee6
Create internal method process_directives_args to call it from wp-each
luisherranz Jan 30, 2024
58abeb0
Add kebab-case to camelCase method
luisherranz Jan 30, 2024
4a62bb6
Add wp-each processor
luisherranz Jan 31, 2024
29f10fa
Make sure it doesn't process non-array values
luisherranz Jan 31, 2024
527a828
Merge branch 'trunk' into add/data-wp-each-server-directive-processor
luisherranz Jan 31, 2024
3b67d47
Trim before checking that starts and ends with tags
luisherranz Jan 31, 2024
72a2f19
Fix typo and some extra tabs
luisherranz Jan 31, 2024
5f3082c
Fix PHPCS
luisherranz Jan 31, 2024
a20240d
Add kebal to camel case conversion in the JS runtime
luisherranz Jan 31, 2024
fa33e6e
Add extra nested test
luisherranz Feb 2, 2024
ed4319e
Restrict appending to template tags
luisherranz Feb 3, 2024
b25a04c
Merge branch 'trunk' into add/data-wp-each-server-directive-processor
luisherranz Feb 3, 2024
f347057
Override WP Core script modules
luisherranz Feb 3, 2024
f434acc
Switch to `data-wp-remove` directive
luisherranz Feb 3, 2024
42d6404
Rename back to data-wp-each-child
luisherranz Feb 4, 2024
b1fd904
Merge branch 'trunk' into add/data-wp-each-server-directive-processor
luisherranz Feb 4, 2024
56f373e
Add missing continue in foreach loop
luisherranz Feb 4, 2024
62d19c4
Don't return a value
luisherranz Feb 4, 2024
f9a2731
Merge branch 'trunk' into add/data-wp-each-server-directive-processor
luisherranz Feb 4, 2024
8fda776
Transform interactivity index to TS
luisherranz Feb 4, 2024
bd858e6
Fix includes_url logic
luisherranz Feb 4, 2024
628509a
Also move vdom to TS
luisherranz Feb 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add missing continue in foreach loop
  • Loading branch information
luisherranz committed Feb 4, 2024
commit 56f373e7d796e5fd868a7dab00604119dcf2a93c
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ private function process_directives_args( string $html, array &$context_stack, a
} else {
// Jumps to the tag closer if the tag has a `data-wp-each-child` directive.
$p->next_balanced_tag_closer_tag();
continue;
}
}

Expand Down