Test markdown

Each post also has a subtitle
 Posted February 20, 2015  |  1 minutes  |  112 words  |  Some Person
Test markdown https://caleb-vincent.gitlab.io/lessbeautifulhugo/post/2015-02-20-test-markdown/

You can write regular markdown here and Hugo will automatically convert it to a nice webpage. I strongly encourage you to take 5 minutes to learn how to write in markdown - it’ll teach you how to transform regular text into bold/italics/headings/tables/etc.

Here is some bold text

Here is a secondary heading

It’s reccommended to omit the first level of markdown headings, as that will be the page title.

Here’s a useless table:

NumberNext numberPrevious number
FiveSixFour
TenElevenNine
SevenEightSix
TwoThreeOne

How about a yummy crepe?

Crepe

Here’s a code chunk with syntax highlighting:

var foo = function(x) {
  return(x + 5);
}
foo(3)