Results 67 comments of Brett Kosinski

So this looks like a busted URL to me. If you look at the error message it reports `pixelfed.org'`. Notice the stray single quote at the end of the host...

I just checked the source file and I see you're using HTML-style links instead of markdown links, which is almost certainly confusing some regular expression somewhere... I'll poke around and...

@xplosionmind Alright, I was able to replicate the issue in a small test site and pushed a fix. Feel free to pull the main branch and give 'er a try.

The change I made only impacts the webmention gathering/queuing phase which occurs when you run a site build (i.e. `bundle exec jekyll build`). Can you check `/webmention_io_outgoing.yml` to confirm there...

So, I think I see the issue, here, as I just ran into it myself. Fundamentally, the issue is that the webmention gatherer is a Jekyll Generator. As per their...

Naming and cache invalidation... ;) Great feedback! I have a prototype implementation put together. I'll tweak the names and throw a PR together. I could see using this same method...

Honestly, I have a much bigger concern that we're getting untrusted, third party content in the form of webmentions, and we're passing it through a markdown parser. I need to...

Are they present in `webmention_io_received.yml` in the cache directory?

So what does the `webmentions` configuration block look like? The plugin will by default *only* process posts (i.e. files in _posts) unless you enable processing of pages using the `pages`...

Can you set `debug: true` in your webmentions block, as follows: ```yaml webmentions: ... debug: true ... ``` Then: 1. Delete `.jekyll-cache/webmention_io_lookups.yml` (this ensures lookup throttling isn't stopping the plugging...