8000 #13 support for simple html tags without attributes · bbottema/outlook-message-parser@477f5aa · GitHub
[go: up one dir, main page]

Skip to content

Commit 477f5aa

Browse files
committed
#13 support for simple html tags without attributes
1 parent 56a1764 commit 477f5aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/simplejavamail/outlookmessageparser/rtf/SimpleRTF2HTMLConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
public class SimpleRTF2HTMLConverter implements RTF2HTMLConverter {
1616

17-
private static final String[] HTML_START_TAGS = { "<html ", "<Html ", "<HTML " };
17+
private static final String[] HTML_START_TAGS = { "<html", "<Html", "<HTML" };
1818
private static final String[] HTML_END_TAGS = { "</html>", "</Html>", "</HTML>" };
1919

2020
public String rtf2html(final String rtf) {

0 commit comments

Comments
 (0)
0