Tuts+ Premium Octopress Course

A Tuts+ Premium Course about Octopress

+Code Plugins

Here are the plugins for dealing with code.

Markdown:

var framework = "Octopress";

Backtick:

Variable AssignmentNettuts+
1
var framework = "octopress";

Codeblock:

Variable AssignmentNettuts+
1
var framework = "octopress";

Include Code:

Fibonacci Sequence (fib.js) download
1
2
3
4
5
6
function fib(n) {
    if (n <= 1) {
        return 1;
    }
    return fib(n-2) + fib(n-1);
}

Gist:

JSFiddle: