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
如图:
样式中的 > 传入 puppeteer 以后被转义了,导致样式失效。
>
The text was updated successfully, but these errors were encountered:
return strip ? this.attrs.content : Element.escape(this.attrs.content)
问题在这里,就算在 transform 函数里面处理了还是有可能会被转义。
transform
我有两个想法:
h.unescape
const content = h.unescape(children.map(transform).filter(Boolean).join(''))
h.toString
noEscape
true
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
概述
如图:
样式中的
>
传入 puppeteer 以后被转义了,导致样式失效。The text was updated successfully, but these errors were encountered: