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
The father doc‘s escape work is WTF. : (
The text was updated successfully, but these errors were encountered:
export default { doc: { title: "father's doc", // notice we have a ' here }, }
Then you will get crash like this:
ᕙ(⇀‸↼‵‵)ᕗ
This problem is happended at umi-plugin-father-doc/src/index.ts#L95
I try to fix this bug by the way but failed.
Both opts.title.replace('\'', '\\'') and escapeHTML(opts.title) can't slove the problem.
opts.title.replace('\'', '\\'')
escapeHTML(opts.title)
I'm too tired, so there is no PR but issue leave to you. : )
Sorry, something went wrong.
fix(umi-plugin): fix double quotation escape error (#25)
7e4021b
No branches or pull requests
The father doc‘s escape work is WTF.
: (
The text was updated successfully, but these errors were encountered: