-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tag processor/dangerously replace contents #46080
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Member
dmsnell
commented
Nov 25, 2022
…ns in document It can be helpful to track a location in an HTML document while updates are being made to it such that we can instruct the Tag Processor to seek to the location of one of the bookmarks. In this patch we're introducing a bookmarks system to do just that. The bookmark is a resource handle that represents an internal tracking object which will follow all updates made to the document. It will be possible to rewind or jump around a document by setting a bookmark.
Open in CodeSandbox Web Editor | VS Code | VS Code Insiders |
adamziel
reviewed
Nov 27, 2022
while ( $depth > 0 && $p->next_tag( [ 'tag_name' => $tag, 'tag_closers' => 'visit' ] ) ) { | ||
$depth += $p->is_tag_closer() ? -1 : 1; | ||
|
||
if ( $depth === 0 ) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error out if the closer has a different tag name than the opener?
ockham
force-pushed
the
tag-processor/add-bookmarks
branch
from
November 29, 2022 12:58
c5f3cc0
to
bc7221f
Compare
dmsnell
force-pushed
the
tag-processor/add-bookmarks
branch
3 times, most recently
from
December 2, 2022 03:03
6026b5d
to
5fcf00d
Compare
This was referenced Dec 13, 2022
gziolo
added
the
[Feature] Block API
API that allows to express the block paradigm.
label
Jan 31, 2023
gziolo
added
[Feature] HTML API
An API for updating HTML attributes in markup
and removed
[Feature] Block API
API that allows to express the block paradigm.
labels
Apr 18, 2023
Closing because this is outdated and work has moved into Core to explore this in dmsnell/wordpress-develop#6 and adamziel/wordpress-develop#2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.