Text Formatting

As always, Jekyll offers support for GitHub Flavored Markdown, which allows you to format your posts using the Markdown syntax. Examples of these text formatting features can be seen below. You can find this post in the _posts directory.

Heading One

Heading Two

Heading Three

Heading Four

Heading Five
Heading Six

Quote Blocks

Nature uses only the longest threads to weave her patterns, so that each small piece of her fabric reveals the organization of the entire tapestry.

Code

// Example can be run directly in your JavaScript console

// Create a function that takes two arguments and returns the sum of those arguments

var adder = new Function("a", "b", "return a + b");

// Call the function
adder(2, 6);
// > 8

Lists

  1. First item.

  2. Second item.

  3. Third item.

  • First point.

  • Second point.

  • Third point.

  • A point.

  • Another point.

  • Another one.