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
SimpleRTF2HTMLConverter.HTML_START_TAGS are: private static final String[] HTML_START_TAGS = { "<html ", "<Html ", "<HTML " }; and should be private static final String[] HTML_START_TAGS = { "<html", "<Html", "<HTML" };
private static final String[] HTML_START_TAGS = { "<html ", "<Html ", "<HTML " };
private static final String[] HTML_START_TAGS = { "<html", "<Html", "<HTML" };
Because of this fetchHtmlSection() method add extra <html> tags for some emails which have simple opening html tag without any attributes
fetchHtmlSection()
<html>
The text was updated successfully, but these errors were encountered:
#13 support for simple html tags without attributes
477f5aa
Released v1.3.0
Sorry, something went wrong.
No branches or pull requests
SimpleRTF2HTMLConverter.HTML_START_TAGS are:
private static final String[] HTML_START_TAGS = { "<html ", "<Html ", "<HTML " };
and should be
private static final String[] HTML_START_TAGS = { "<html", "<Html", "<HTML" };
Because of this
fetchHtmlSection()
method add extra<html>
tags for some emails which have simple opening html tag without any attributesThe text was updated successfully, but these errors were encountered: