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
Describe the bug Aztec editor creates invalid html when creating a list from a previously loaded paragraph
To Reproduce Steps to reproduce the behavior:
setHTML
<p>sample text</p>
getHTMLWithPrettify(false)
Expected behavior Same result when creating a list form scratch:
<ul> <li>sample text</li> </ul>
Actual behavior
<p> <ul> <li>sample text</li> </ul> </p>
This is invalid html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Aztec editor creates invalid html when creating a list from a previously loaded paragraph
To Reproduce
Steps to reproduce the behavior:
setHTML
method:<p>sample text</p>
getHTMLWithPrettify(false)
Expected behavior
Same result when creating a list form scratch:
Actual behavior
This is invalid html
The text was updated successfully, but these errors were encountered: