summaryrefslogtreecommitdiff
path: root/_posts/2012-04-26-opentox-blogging.md
blob: 8fea26dbd734d814c8a47702b53525b5f42d60ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
layout: post
title: "Blogging at opentox.github.com"
description: ""
category: Development
tags: [Blogging]
---
{% include JB/setup %}

Install Jekyll
--------------

    gem install jekyll -v 0.12.0

Get opentox.github.com
----------------------

    git clone git@github.com:opentox/opentox.github.com.git

Preview
-------

    cd opentox.github.com
    jekyll --server

view at `http://localhost:4000`

Blog
----

    rake post title="foo"

Edit blog at `_posts/[...]foo.md`. Use a [spell-checker](/linux/2012/05/18/using-vim/).

Categories and tags
-------------------

Please choose one of the terms *Usage*, *Installation* or *Development* as a category for your post. 
Use tags to refer to related concepts (e.g *REST*, *support vector machines*, ...). Please 

- re-use existing tags as much as possible. 
- when re-using, be sure to use the verbatim expression (e.g. capitalization).

This is important for the 'Related Posts' functionality (although it does not seem to work on Github) and for users who want to get an overview of what is covered.

Publish
-------

    git add .
    git commit -m "Add new content"
    git push 

Formatting
-------
* [Markdown Syntax Documentation](http://daringfireball.net/projects/markdown/syntax)
* [github flavoured markdown](http://github.github.com/github-flavored-markdown/)