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
I've found a small problem with text nodes and converter.py Supplying the html...
<div> <p>hello <strong>bold</strong> goodbye</p> </div>
Returns:
{ "content": { "content": [ { "text": "hello " }, { "content": [ { "text": "bold" }, { "text": " goodbye" } ], "type": "strong" } ], "type": "p" } }
Which reconstructs as:
<div> <p>hello <strong>bold goodbye</strong></p> </div>
I think it should return:
{ "content": { "content": [ { "content": [ { "text": "hello" } ], "content": [ { "text": "bold" }, "type": "strong" ], "content": [ { "text": " goodbye" } ] } ], "type": "p" } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've found a small problem with text nodes and converter.py
Supplying the html...
Returns:
Which reconstructs as:
I think it should return:
The text was updated successfully, but these errors were encountered: