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
v15.11.7
This HTML
<label class="form-check-label">{{message_gui_markdown_input_activated}}<input id= "advertisement_format_toggle" class="form-check-input" role="switch" type="checkbox"></label>
is parsed to when calling document.write() with the HTML source code as argument
document.write()
<label class="form-check-label">Set Markdown as input.<input id="" advertisement_format_toggle="" class="form-check-input" role="switch" type="checkbox"></label>
The error seems to be the new line.
This part
id="" advertisement_format_toggle=""
should be
id="advertisement_format_toggle"
I am using bun v1.1.42.
The text was updated successfully, but these errors were encountered:
Fixed with v16.0.0.
Sorry, something went wrong.
Great to hear that v16.0.0 fixed the issue @Spixmaster! 🙂
No branches or pull requests
v15.11.7
This HTML
is parsed to when calling
document.write()
with the HTML source code as argumentThe error seems to be the new line.
This part
should be
I am using bun v1.1.42.
The text was updated successfully, but these errors were encountered: