An open API service indexing awesome lists of open source software.

https://github.com/jaygooby/jekyll-extract-links

Gets all the links from each post and adds them to the page.data for that post
https://github.com/jaygooby/jekyll-extract-links

hrefs jekyll links plugin

Last synced: about 1 month ago
JSON representation

Gets all the links from each post and adds them to the page.data for that post

Awesome Lists containing this project

README

          

# jekyll-extract-links
Gets all the links from your posts and adds them to the `page.data` for that post.

You can then use them in your liquid markup:

```liquid


    {% for link in page.links %}
  • {{ link.title }} {{ link.cleaner_href }} {{ link.href }}

  • {% endfor %}

```

The `title` is the text that appears inside the anchor tag and the `cleaner_href` is the `href` with [campaign utm](https://support.google.com/analytics/answer/1033863) and [Chrome text fragment](https://web.dev/text-fragments/) cruft removed, which can make a url human-unreadable.