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

https://github.com/taurusolson/post

A naive blog engine or tool to store my notes and ideas.
https://github.com/taurusolson/post

Last synced: 9 months ago
JSON representation

A naive blog engine or tool to store my notes and ideas.

Awesome Lists containing this project

README

          

# POST.PY #

## DESCRIPTION ##

post.py is a naive blog engine I wrote to quickly keep my notes and ideas in a nice format.
The entries can be quotes with the command line or files written with *Markdown*.

## REQUIREMENT ##

Markdown module.

## CONFIGURATION ##

In the file post.py, modify:

- the constants:

INSERT_CSS=True
INSERT_HEADER=True
DIR = 'Documents/Blog'
MKD_FILE = 'posts.mkd'
HTML_FILE = 'posts.html'

- the header:



AT THE SPEED OF LIFE:
MY NOTES AND IDEAS...


and if you choose to use a CSS file, change its name:

## USAGE ##

- Post a quote/note.

post.py "My fantastic quote."

- Post a file.

post.py file.mkd

- Convert the posts to HTML.

post.py -2html

## TODO ##

- Find a way to easily edit/remove an entry.
- Add dates for each post