Webmention send to brid.gy only triggered when syndication link inline of post

New issue for: https://github.com/aarongustafson/jekyll-webmention_io/issues

I found an issue when webmention send to brid.gy is triggered only when I paste syndication link inline like in post below:


---
layout: note
date: 2019-09-14 22:44:00 +0200
categories: note
---
This is only test, nothing to read ... do not disturb yourself :)

This will be sent to brid.gy
[](https://brid_gy/publish/twitter)  << dot "." replaced with underscore "_" to not send this issue to twitter ;)

When there is no link like in this example:

---
layout: note
date: 2019-09-14 22:44:00 +0200
categories: note
---
This is only test, nothing to read ... do not disturb yourself :)

this will not be sent to brid.gy

Webmention is not sent using jekyll webmention command beside of the fact that my template looks like this:

---
layout: default
---

<article class="h-entry my-2 row">
  <div class="col-sm-2">
    <a href="{{ site.url }}" class="p-author h-card">
      <img class="u-photo rounded-circle img-thumbnail" style="width: 100px" src="{{ site.url }}/assets/img/pawelmadej-profilephoto.jpg" alt="{{ site.author.name }}" />
    </a>
  </div>
  <div class="col">
    {% if page.reply-to %}
    <p>In reply to: <a href="{{ page.reply-to }}" class="u-in-reply-to">{{ page.reply-to }}</a></p>
    {% endif %}
    <div class="p-name e-content">
      {{ content }}
      <p>{% for hashtag in page.hashtags %}#{{ hashtag }}{% unless forloop.last %}, {% endunless %}{% endfor %}</p>
    </div>
    <p>Published: <a href="{{ site.url }}{{ page.url }}" class="u-url"><time class="dt-published" datetime="{{ page.date | date: '%FT%T%:z' }}">{{ page.date | date_to_string }}</time></a></p>
    <a href="{{ site.url }}{{ site.baseurl }}{{ page.categories.first }}" class="p-category" hidden>{{ page.categories.first }}</a>
  </div>
</article>

<a href="https://brid_gy/publish/twitter"></a> << dot "." replaced with underscore "_" to not send this issue to twitter ;)

Published: