DaSourcerer
DaSourcerer
Ugh! Can you remove 2bd7dc7 and force push? This is extremely hard to assess correctly as-is. Appreciate your effort, though!
@shmax I think, he doesn't experience any actual problems safe for the parts of the input that could not be parsed as tags being forcibly turned all-lowercase. I am actually...
@frastel: As I said, this may be a hint some refactoring were in order. I understand your reluctance to introduce possibly code-breaking changes, but I just feel there is a...
Auto-paragraphs are difficult to achieve. You can try to split the output by double linebreaks and insert tags there. But the error rate would probably be high. IMHO it would...
This seems to be a deficiency of `filter_var()`. Implement your own `UrlValidator` and overwrite the default definition for the url-tag.
Yes, that's pretty much what I wrote. Implementing your own variation of `UrlValidator` will allow you to get around that.
> But it would be beatiful code :-) @Kubo2 Really? This sounds a bit like "let's use SPL for the sake of having used SPL" When I was working on...
Somewhat unrelated but then again not: I'm not really satisfied with how the `SmileyVisitor` is working. Are there any plans to make (text)nodes splitable? I'd like to keep smileys and...
Well, I guess you could implement a `NodeVisitor` that is removing all leading and trailing whitespaces via `trim()` in the `TextNode`s of your table. In general it is not a...