I am making a site that publishes articles in issues each month. It is straightforward, and I think using a Markdown editor (like the WMD one here in Stack Overflow) wo
If you implement it in Python, there is an extension that lets you add HTML key/value pairs, and class/id labels. The syntax is for this is:
{: style="float:right"}
Or, if embedded styling doesn't float your boat,
{: .floatright}
with a corresponding stylesheet, stylish.css
:
.floatright {
float: right;
/* etc. */
}