Letterpress is a minimal, Markdown based blogging system written in Python.
- Letterpress is lighter than WordPress.
- Python is prettier than PHP.
- Static/text is more reliable than dynamic/database.
- Markdown is more human-friendly than HTML.
- Math writing is much easier in ASCIIMathML than in MathML.
- A Linux kernel with inotify support is required to run Letterpress.
- Requires Python 3. I want to contribute to the acceleration of the transition from Python 2 to Python 3.
- UTF-8 is assumed. The babel of human languages is bad enough, let's at least use the same encoding.
- Install pyinotify.
- Copy
code/letterpress.py
to your Python runtime path. - Copy
code/markdown2/lib/markdown2.py
to your Python runtime path. - Make a directory to hold your posts — let's call it press_folder — and copy
press/*
to it. - Make the necessary changes to the templates(title, twitter handle…) and
letterpress.config
. - Install Pygments if you want to embed code(using GFM's Syntax Highlighting) in your posts.
$ python letterpress.py path_to_press_folder
After launch, Letterpress monitors Markdown files(recognized by the filename extension specified in letterpress.config
) in press_folder. When an new Markdown file is detected Letterpress generates a new HTML file from that Markdown file. Similarly, when an existing Markdown file is updated or deleted, Letterpress updates or deletes the corresponding HTML file.
Letterpress also monitors templates. If any change is detected in any of the template files, Letterpress rebuilds the whole site.
Letterpress also monitors subfolders and other files in press_folder but treat them as assets. It maps them directly into site_dir
. It means if you make an assets folder and put images there you can reference them in your posts, e.g., ![Big Headshot](/assets/big_headshot.jpg)
.
Letterpress builds these indices automatically:
- Home index
- Archive indices
- Monthly indices
- Yearly indices
- Tag indices
Letterpress writes logs into press_folder so you can easily review what is going on.
You write posts in such a natural format:
title: Post Title
date: Publishing date in the format specified in letterpress.config. The default format is 01/31/2013.
excerpt: Summary of the post.
tags: math, web
Content of the post…
### Let's have fun with math & physics
$E=m*c^2$
Refer to press/sample_post.md
for a complete example.
The recommended naming scheme for post files is to use post title, directly or shortened. Adding date to file names would result in redundant path segment in permalinks since Letterpress already puts the HTML files under folders named after their publish dates.
You can publish posts by putting them in press_folder with whatever method you like, e.g., FTP or rsync. However, I highly recommend Dropbox. This is how you should use Dropbox to publish posts to Letterpress:
- Of course you must have a Dropbox account. Let's call it writer's account.
- Install Dropbox client on your desktop computer, iPhone, iPad or other devices you write on. Let's call it writing machine.
- Sign in your writer's account on your writing machine.
- Have the aforementioned press_folder somewhere in Dropbox folder on your writing machine.
- Register another Dropbox account. Let's call it publisher's account.
- Install Dropbox client on your server. Let's call it publishing machine.
- Sign in your publisher's account on your publishing machine.
- Share press_folder from your writer's account to your publisher's account.
- Now your writing machine's press_folder and publishing machine's press_folder are in sync. Whenever you put a new post into, edit an existing post in, or delete one from, your press_folder on your writing machine, Letterpress will generate, update, or delete the corresponding HTML file in site_dir(configured in
letterpress.config
) on your publishing machine.
-
Templates and style sheets are derived from Michiel de Graaf's blog.
-
pyinotify by Sebastien Martini.
-
python-markdown2 by Trent Mick. My fork is used here because:
- Some necessary bug fixes are not merged back yet.
- Some extension is required to support ASCIIMathML embedding.
- I want to use my inline-styled footnotes.
-
Pygments by Pocoo.
-
MathJax for ASCIIMathML processing and MathML rendering.
So I hardly did any thing but glue these awesome things together.
Letterpress is licensed under a BSD-3-clause license. See LICENSE for details. You are encouraged to keep the "Powered by Letterpress" footer on your site.