Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 229178 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/wst/sse/ui/internal/derived/HTML2TextReader.java (-3 / +3 lines)
Lines 138-145 Link Here
138
		if ('/' == tag.charAt(0))
138
		if ('/' == tag.charAt(0))
139
			tag= tag.substring(1);
139
			tag= tag.substring(1);
140
140
141
		if (!fgTags.contains(tag))
141
//		if (!fgTags.contains(tag))
142
			return EMPTY_STRING;
142
//			return EMPTY_STRING;
143
143
144
144
145
		if ("pre".equals(html)) { //$NON-NLS-1$
145
		if ("pre".equals(html)) { //$NON-NLS-1$
Lines 201-207 Link Here
201
		if ("/dd".equals(html)) //$NON-NLS-1$
201
		if ("/dd".equals(html)) //$NON-NLS-1$
202
			return LINE_DELIM;
202
			return LINE_DELIM;
203
203
204
		return EMPTY_STRING;
204
		return '<' + html + '>'; 
205
	}
205
	}
206
206
207
	/*
207
	/*

Return to bug 229178