├── .gitignore ├── CODE_OF_CONDUCT.md ├── README.md ├── implementation-reports ├── README.md └── webmention.jamesg.blog.md ├── lib └── markdown.php ├── w3c.json └── web ├── draft ├── index.html ├── publish │ ├── index.html │ └── rec │ │ └── index.html └── source │ ├── add-paragraph-ids.js │ └── index.html ├── endpoint.php ├── errata ├── README.md └── index.php ├── github └── hook.php ├── implementation-reports ├── README.md ├── TEMPLATE.md ├── aruna.md ├── bridgy.md ├── dobrado.md ├── falcon.md ├── franciscms.md ├── gnusocial.md ├── grav-plugin-webmention.md ├── index.md ├── index.php ├── jonnybarnes.uk.md ├── kaku.md ├── known.md ├── lazymention.md ├── postly.md ├── processwire-webmention.md ├── pushl.md ├── summary │ ├── index.html │ └── resources │ │ └── sheet.css ├── telegraph.md ├── transformative.md ├── webmention-perl.md ├── webmention.herokuapp.com.md ├── webmention.io.md ├── webmentiond.md └── wordpress.md ├── implementations ├── index.md └── index.php ├── index.php ├── pingback.php ├── robots.txt └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/README.md -------------------------------------------------------------------------------- /implementation-reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/implementation-reports/README.md -------------------------------------------------------------------------------- /implementation-reports/webmention.jamesg.blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/implementation-reports/webmention.jamesg.blog.md -------------------------------------------------------------------------------- /lib/markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/lib/markdown.php -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/w3c.json -------------------------------------------------------------------------------- /web/draft/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/draft/index.html -------------------------------------------------------------------------------- /web/draft/publish/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/draft/publish/index.html -------------------------------------------------------------------------------- /web/draft/publish/rec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/draft/publish/rec/index.html -------------------------------------------------------------------------------- /web/draft/source/add-paragraph-ids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/draft/source/add-paragraph-ids.js -------------------------------------------------------------------------------- /web/draft/source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/draft/source/index.html -------------------------------------------------------------------------------- /web/endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/endpoint.php -------------------------------------------------------------------------------- /web/errata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/errata/README.md -------------------------------------------------------------------------------- /web/errata/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/errata/index.php -------------------------------------------------------------------------------- /web/github/hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/github/hook.php -------------------------------------------------------------------------------- /web/implementation-reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/README.md -------------------------------------------------------------------------------- /web/implementation-reports/TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/TEMPLATE.md -------------------------------------------------------------------------------- /web/implementation-reports/aruna.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/aruna.md -------------------------------------------------------------------------------- /web/implementation-reports/bridgy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/bridgy.md -------------------------------------------------------------------------------- /web/implementation-reports/dobrado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/dobrado.md -------------------------------------------------------------------------------- /web/implementation-reports/falcon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/falcon.md -------------------------------------------------------------------------------- /web/implementation-reports/franciscms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/franciscms.md -------------------------------------------------------------------------------- /web/implementation-reports/gnusocial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/gnusocial.md -------------------------------------------------------------------------------- /web/implementation-reports/grav-plugin-webmention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/grav-plugin-webmention.md -------------------------------------------------------------------------------- /web/implementation-reports/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/index.md -------------------------------------------------------------------------------- /web/implementation-reports/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/index.php -------------------------------------------------------------------------------- /web/implementation-reports/jonnybarnes.uk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/jonnybarnes.uk.md -------------------------------------------------------------------------------- /web/implementation-reports/kaku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/kaku.md -------------------------------------------------------------------------------- /web/implementation-reports/known.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/known.md -------------------------------------------------------------------------------- /web/implementation-reports/lazymention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/lazymention.md -------------------------------------------------------------------------------- /web/implementation-reports/postly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/postly.md -------------------------------------------------------------------------------- /web/implementation-reports/processwire-webmention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/processwire-webmention.md -------------------------------------------------------------------------------- /web/implementation-reports/pushl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/pushl.md -------------------------------------------------------------------------------- /web/implementation-reports/summary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/summary/index.html -------------------------------------------------------------------------------- /web/implementation-reports/summary/resources/sheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/summary/resources/sheet.css -------------------------------------------------------------------------------- /web/implementation-reports/telegraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/telegraph.md -------------------------------------------------------------------------------- /web/implementation-reports/transformative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/transformative.md -------------------------------------------------------------------------------- /web/implementation-reports/webmention-perl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/webmention-perl.md -------------------------------------------------------------------------------- /web/implementation-reports/webmention.herokuapp.com.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/webmention.herokuapp.com.md -------------------------------------------------------------------------------- /web/implementation-reports/webmention.io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/webmention.io.md -------------------------------------------------------------------------------- /web/implementation-reports/webmentiond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/webmentiond.md -------------------------------------------------------------------------------- /web/implementation-reports/wordpress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementation-reports/wordpress.md -------------------------------------------------------------------------------- /web/implementations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementations/index.md -------------------------------------------------------------------------------- /web/implementations/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/implementations/index.php -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/index.php -------------------------------------------------------------------------------- /web/pingback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/pingback.php -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webmention/HEAD/web/styles.css --------------------------------------------------------------------------------