We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
when label closed, I wanna do something, Is there anyway to implement it? For example:
// when encounter </div> I want to add a line break for the text <div><span>A</span></div>
The text was updated successfully, but these errors were encountered:
I hoped TreeSink::pop() would allow this, but it doesn't seem to be called when I expect it to.
TreeSink::pop()
Sorry, something went wrong.
Seems like #149 is asking for the same thing. #149 (comment) suggests pop() may be usable, but that it isn't always called
pop()
/// Indicate that a node was popped off the stack of open elements. fn pop(&mut self, _node: &Self::Handle) {}
Yep, I have tried TreeSink::pop(), but it isn't called every time that encountered end tags. Maybe it wasn't designed to do that.
No branches or pull requests
when label closed, I wanna do something, Is there anyway to implement it? For example:
The text was updated successfully, but these errors were encountered: