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

https://github.com/extua/newposte-rs

Very short little rust utility to create a new Jekyll post with some front matter
https://github.com/extua/newposte-rs

jekyll

Last synced: 3 months ago
JSON representation

Very short little rust utility to create a new Jekyll post with some front matter

Awesome Lists containing this project

README

          

# newposte-rs

This code just generates a new markdown file with front matter for use with Jekyll, similar to the [official jekyll-compose plugin](https://github.com/jekyll/jekyll-compose).

For example, file `2023-08-07-this_new_post.md`

```yml
---
title: This new post
location: Leicester
tags: [rust, jekyll, blogging]
---
```

And given a media directory with some jpegs (or [jixels](https://github.com/extua/newposte-rs/commit/d44a4dc790307fcb78b47691292160bb0bb1d421)) it'll output a set of picture tags to the file.

```liquid
{% picture media/2023/10/example.jpg --alt an example photo %}
```