Hello World

Hello, World!

Some nice features of the Hugo Markdown rederer.

Incomplete Markdown Cheatsheet

Emphasis

Markdown in Hugo support all the standard stuff like bold and italic.

Lists

Ordered

  1. item
  2. item
    • subitem

Unordered

  • item
  • item
    • subitem
    • subitem

Extensions

It also have some useful extension like tables…

col1 col2 col3
text text text
text text text
text text text
text text text

…and syntax highlight

// c#
function bool foo()
{
  return true;
}
// javascript
function test() {
 console.log("look ma’, no spaces");
}