1

Closed

There is a bug when handling ul tag.(V1.3)

description

In ProcessNumberingList(HtmlEnumerator en) method,
 
if (en.Current.Equals("<ul>", StringComparison.InvariantCultureIgnoreCase)) should be:
 
1: if (en.Current.StartsWith("<ul", StringComparison.InvariantCultureIgnoreCase)).
 
2: if (en.CurrentTag.Equals("<ul>", StringComparison.InvariantCultureIgnoreCase)).
 
This is why i cannot generate bullet list.
 
Best Regards.
Closed Feb 19, 2011 at 1:51 PM by onizet
Thanks for your feedback. Changes applied to v1.4

comments