jstedfast / HtmlKit

A cross-platform .NET framework for parsing HTML
Other
81 stars 55 forks source link

create HtmlToken with Custom HtmlTagFactory #3

Closed prepare closed 9 years ago

prepare commented 9 years ago

so we can control how to create a specific element :)

jstedfast commented 9 years ago

I ended up doing something similar by just providing virtual methods on HtmlTokenizer instead of having it accept a factory. I tend to hate factories in general.

prepare commented 9 years ago

:+1: Thank you :)