Martijn van der Ven

Results 145 comments of Martijn van der Ven

> It may be tough to decide when a link is an undesired redirect, and when it is a 'legit' redirect that should be retained. From the perspective of a...

True, I didn’t think about migrating existing installations. I simply edited `$vars['collations']` (`s/utf8_/utf8mb4_/g`) and `DB::factory`’s charset setting before installing Anchor and it seemed to have no problems setting up the...

> Running this for every table will convert it transparently on upgrade According to Mathias’ article you need to run [a little more than that](https://mathiasbynens.be/notes/mysql-utf8mb4#databases-tables-columns). But yes, that is the...

You could try this one I used for a bit: [Mail.php](https://gist.github.com/Zegnat/d5ce4a5fd03252d872238553e6ca70de). Works like any other sender: ```php use Omnimail\Email; use Zegnat\Omnimail\Mail; $sender = new Mail(); $email = (new Email()) ->addTo('[email protected]')...

I wonder if the Sass version could be made to make more use of Sass? If the `font-feature-settings` property is created by some mixin it would be easy enough to...

I think you meant to have `lnum` rather than `pnum` in your example. ``` css a[href^="tel:"], .p-tel { font-feature-settings: "tnum" 1, "lnum" 1, "kern" 1; /* Etc. */ } ```

To address 3: yes, I believe this is still a problem even in the latest PHP stable. This is because it is not a PHP problem but a libxml problem....

That might work. This also may already be handled if you use [the userland HTML5 parser we recommend](https://github.com/Masterminds/html5-php). I just think we do not have any tests for it. At...

I think I am still with my previous comment and would like someone else to weight in besides me: > I'd love to hear the input from the other maintainers...

> Is the indieweb really microformats only? Not really. Many IndieWeb projects depend on HTML though, and I am not sure anyone supports extracting `rel="me"` links from anything else (e.g....