/me whispers #indieweb
I have an in-progress PW3 branch that should work, though I haven’t tested it in a while. If you try it out, please let me know any issues you run into. In the coming months I should be able to get an official release out.
https://github.com/gRegorLove/ProcessWire-Webmention/tree/master-pw3
Yep, microformats are alive and well; used a lot in the #indieweb community. If you’re adding them to new content, I’d recommend checking out microformats2 h-card. Easier markup and parsers are backwards compatible.
I know you have a micro.blog, I have really been enjoying micro.blog and it echoes what you describe here. I use it for 90% of my social net interactions and it’s great! Also, I’ve been using #microsub (https://indieweb.org/Microsub) to emulate feed based networking
<?php include 'HTML5.php'; function html5_autoload($className) { $file = 'library/' . str_replace('\', '/', $className) . '.php'; if (file_exists($file)) include $file; } spl_autoload_register('html5_autoload');