OB - Oliver's Blog Script

A Blog and RSS system written in Rust.

Features

Installation

Install Rust:

shell curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Install OB:

shell cargo install ob

Setup

You will need to create four files:

html <!DOCTYPE html> <html lang="en"> <head> <title>Your Blog</title> <meta charset="utf-8"/> </head> <body> <h1>Blog Updates</h1> <ul> <!-- OB --> </ul> </body> </html>

html <!DOCTYPE html> <html lang="en"> <head> <title></title> <meta charset="utf-8"/> </head> <body> <!-- OB --> </body> </html>

```xml Blog Title Description en-us https://your_blog.com/rss.xml

<!-- OB -->

```

json { "blog": "index.html", "template": "template.html", "rss": "rss.xml", "items": 4, "blog_address": "https://your_blog.com/blog/", "images": true }

Markers

For the system to work, add the following comment line to the Rolling Blog File, the Template and RSS feed (as above).

html <!-- OB -->

When you publish a blog post, it will be added directly below that line in the proper format.

Usage

``` USAGE: ob [FLAGS]

FLAGS: -d, --delete Delete a draft -h, --help Prints help information -n, --new Create a new draft -p, --publish Publish a daft -V, --version Prints version information ```

The first time ob is used it will create a folder at: /blog.

When you create a new draft it will be located at: /blog/drafts.
When you publish a new draft it will be located at: /blog/example.html.

Example usage:

shell ob --new


See website and /docs for an example blog.