Skip to content

Instantly share code, notes, and snippets.

@iChris
Created June 29, 2022 22:16
Show Gist options
  • Save iChris/f433532675d100758079e0ba4479398b to your computer and use it in GitHub Desktop.
Save iChris/f433532675d100758079e0ba4479398b to your computer and use it in GitHub Desktop.
Trying to create a JSON feed from my Eleventy based blog to import to Micro.Blog πŸ™
---
permalink: '/exportposts.json'
---
[
{% for post in collections.posts %}
{
"title":"{{ post.data.title }}",
"url":"{{ post.url | url }}" ,
}
{% if loop.last == false %},{% endif %} {% endfor %} {%
]
@iChris
Copy link
Author

iChris commented Jun 29, 2022

Maybe I just need to use this plugin instead?.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment