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
Code:
import 'package:html/parser.dart'; class HtmlUtil{ String? toPlainTxt(String htmlString) { final document = parse(htmlString); final parsedString = parse(document.body?.text).documentElement?.text; return parsedString; } }
Input: <p>Hello<br/><span style="color:#f00">This is colorful</span></p>
<p>Hello<br/><span style="color:#f00">This is colorful</span></p>
Output: HelloThis is colorful
HelloThis is colorful
Expected: Hello\nThis is colorful
Hello\nThis is colorful
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Code:
Input:
<p>Hello<br/><span style="color:#f00">This is colorful</span></p>
Output:
HelloThis is colorful
Expected:
Hello\nThis is colorful
The text was updated successfully, but these errors were encountered: