Replies: 2 comments 15 replies
-
@dgtlmoon would you have any insights? :) |
Beta Was this translation helpful? Give feedback.
2 replies
-
1.5 seconds of ChatGPT..
is that what you want? |
Beta Was this translation helpful? Give feedback.
13 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using the subscription version, and I am monitoring changes to the source code for my Wordpress website.
Because of caching plugins, some elements are rendered with versioning, like
id=html5_[randomString]
.While I know I can ignore the entire line where those elements occur, I would like to know if there is a way to remove those elements from the line, before triggering a change, because I would be interested in knowing if something else changed on those lines.
So, for example, if I have a line that reads
<div id="html5_eywqueywquieywq"><p>This is a div</p></div>
I would like to keep
<div id="html5_"><p>This is a div</p></div>
and use this as output for the change triggers and comparisons.
Is it possible?
Basically, I realize I am asking for the opposite of what "Extract text" does :)
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions