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.
- Host: GitHub
- URL: https://github.com/taurusolson/post
- Owner: TaurusOlson
- Created: 2010-08-23T20:14:25.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2010-09-03T12:24:00.000Z (almost 16 years ago)
- Last Synced: 2023-04-17T20:37:40.960Z (about 3 years ago)
- Language: Python
- Homepage:
- Size: 97.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
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