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 \ns in multiline texts in html need to be replaced with \\n
\n
\\n
<div> Hello World </div>
generates
tdiv: text "Hello World"
but expected
tdiv: text "Hello\nWorld"
The text was updated successfully, but these errors were encountered:
The expected result can be as following too:
tdiv: text """Hello World"""
Sorry, something went wrong.
The strings with " need to be sanitized too
"
No branches or pull requests
The
\n
s in multiline texts in html need to be replaced with\\n
generates
but expected
The text was updated successfully, but these errors were encountered: