From 0fc22b4d8d179a3d23429219fd36c5f570254366 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 17 Mar 2023 18:30:18 -0700 Subject: [PATCH 1/3] fix footnote --- src/posts/2023/webmentions-in-eleventy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posts/2023/webmentions-in-eleventy.md b/src/posts/2023/webmentions-in-eleventy.md index 41b1540c..a04b8704 100644 --- a/src/posts/2023/webmentions-in-eleventy.md +++ b/src/posts/2023/webmentions-in-eleventy.md @@ -7,7 +7,7 @@ tags: ['webmentions', '11ty', 'eleventy'] In the interest of continuing to repeat myself I'm writing, once again, about adding webmentions to a blog.[^1] To quote myself[^2]: -> To kick this off you'll need to log in and establish an account with [webmention.io](https://webmention.io) and [Bridgy](https://brid.gy). The former provides you with a pair of meta tags that collect webmentions, the latter connects your site to social media[^1] +> To kick this off you'll need to log in and establish an account with [webmention.io](https://webmention.io) and [Bridgy](https://brid.gy). The former provides you with a pair of meta tags that collect webmentions, the latter connects your site to social media > Once you've added the appropriate tags from webmention.io, connected your desired accounts to Bridgy and received some mentions on these sites, you should be able to access said mentions via their API. From a5e47754ba02d2dc7f0fefc88c2dfa20252f0eb5 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 17 Mar 2023 18:52:09 -0700 Subject: [PATCH 2/3] fix code block --- src/posts/2023/webmentions-in-eleventy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posts/2023/webmentions-in-eleventy.md b/src/posts/2023/webmentions-in-eleventy.md index a04b8704..0d6df7d8 100644 --- a/src/posts/2023/webmentions-in-eleventy.md +++ b/src/posts/2023/webmentions-in-eleventy.md @@ -57,7 +57,7 @@ jobs: When the build runs, it renders any mentions of a given post via a [liquid.js](https://liquidjs.com/) template that looks like this: -```liquid +```plaintext {% if webmentions %}
{% From 082bada8e4b403231790f8e52e9e1f8eccb9a4ce Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 17 Mar 2023 18:56:09 -0700 Subject: [PATCH 3/3] fix styling --- src/posts/2023/webmentions-in-eleventy.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/posts/2023/webmentions-in-eleventy.md b/src/posts/2023/webmentions-in-eleventy.md index 0d6df7d8..93dcd1ae 100644 --- a/src/posts/2023/webmentions-in-eleventy.md +++ b/src/posts/2023/webmentions-in-eleventy.md @@ -57,7 +57,8 @@ jobs: When the build runs, it renders any mentions of a given post via a [liquid.js](https://liquidjs.com/) template that looks like this: -```plaintext +{% raw %} +```liquid {% if webmentions %}
{% @@ -129,6 +130,7 @@ When the build runs, it renders any mentions of a given post via a [liquid.js](h
{% endif %} ``` +{% endraw %} This conditionally displays different mention types based on the available data after being passed through the `webmentionsByUrl` filter which I shamelessly lifted from [Robb](https://github.com/rknightuk/rknight.me/blob/8e2a5c5f886cae6c04add7893b8bf8a2d6295ddf/config/filters.js#L48-L84).