Results 52 issues of Barnaby Walters

Auto-linking this input: ``` '//example.com/photo.png' ``` Produces this output: ``` '//example.com/photo.png' ``` It also re-links photo URLs inside `` elements: ``` '' ``` becomes: ``` '' ```

Despite the docs saying: > Quotes are converted to correctly facing curly quote entities, except those that appear within tags format_characters() doesn't work in the same way. For example, this...

Bug

Currently, the parser has a variety of different entry points: ```php Mf2\fetch('url'); Mf2\parse('html', 'url'); $p = new Parser('html', 'url'); $p->parse(); $p->parseFromId(); ``` Additionally, there is a variety of different ways...

enhancement

php-mf2 v0.5.0 passes 79 out of 121 according to https://willnorris.github.io/mf2-tester/ I’ve not looked through the failures in detail, but there seem to be a few unimplemented mf1 vocabs which should...

Currently indiewebify.me just spits out a list of rel=me URLs found on the given page. It should be: - listing all the URLs - checking to see if they’re reciprocated...

enhancement

E.G. if someone has a h-entry with p-comments _without_ a mf root classname, all of their properties will attach themselves to the parent h-entry and the p-comments will be strings.

enhancement

A tool could be made which, given the URL of a post, sends it a webmention with a bunch of XSS attacks in. Each attack, if successful, does a `console.log`...

enhancement

Currently /validate-h-card only looks for an author property on the discovered h-card. It needs to implement the algorithm at http://indiewebcamp.com/authorship to find author data.

enhancement

With the usual markup demos, how to do human-readable + machine readable, maybe even PHP/Python/etc. demo formatting strings? Could also try to parse the human-readable date with `new DateTime()` and...

enhancement