Markdown Syntax Guide

Markdown Syntax Guide #


This article offers a sample of basic Markdown syntax that can be used in Hugo content files.

This article is a shortened adaption of the great Grav original page.

For further details on the extended Markdown syntax of Hugo and Books - Theme see the corresponding articles.

Let’s face it: Writing content for the Web is tiresome. WYSIWYG editors help alleviate this task, but they generally result in horrible code, or worse yet, ugly web pages.

Markdown is a better way to write HTML, without all the complexities and ugliness that usually accompanies it.

Some of the key benefits are:

  1. Markdown is simple to learn, with minimal extra characters, so it’s also quicker to write content.
  2. Less chance of errors when writing in Markdown.
  3. Produces valid XHTML output.
  4. Keeps the content and the visual display separate, so you cannot mess up the look of your site.
  5. Write in any text editor or Markdown application you like.
  6. Markdown is a joy to use!

John Gruber, the author of Markdown, puts it like this:

The overriding design goal for Markdown’s formatting syntax is to make it as readable as possible. The idea is that a Markdown-formatted document should be publishable as-is, as plain text, without looking like it’s been marked up with tags or formatting instructions. While Markdown’s syntax has been influenced by several existing text-to-HTML filters, the single biggest source of inspiration for Markdown’s syntax is the format of plain text email.

– John Gruber

Without further delay, let us go over the main elements of Markdown and what the resulting HTML looks like!

1 Headings #

Headings from h1 through h6 are constructed with a # for each level:

1# h1 Heading
2## h2 Heading
3### h3 Heading
4#### h4 Heading
5##### h5 Heading
6###### h6 Heading

2 Comments #

Comments should be HTML compatible.

1<!--
2This is a comment
3-->

Comment below should NOT be seen:

3 Horizontal Rules #

The HTML <hr> element is for creating a “thematic break” between paragraph-level elements. In Markdown, you can create a <hr> with any of the following:

  • ___: three consecutive underscores
  • ---: three consecutive dashes
  • ***: three consecutive asterisks

The rendered output looks like this:




4 Inline HTML #

If you need a certain HTML tag (with a class) you can simply use HTML:

1Paragraph in Markdown.
2
3<div class="class">
4    This is <b>HTML</b>
5</div>
6
7Paragraph in Markdown.

5 Emphasis #

Bold #

For emphasizing a snippet of text with a heavier font-weight.

The following snippet of text is rendered as bold text.

1**rendered as bold text**
2__rendered as bold text__

Italics #

For emphasizing a snippet of text with italics.

The following snippet of text is rendered as italicized text.

1*rendered as italicized text*
2_rendered as italicized text_

Strikethrough #

In GitHub flavored Markdown, which can be used on this site, you can do strikethroughs.

1~~Strike through this text.~~

The rendered output looks like this:

Strike through this text.

Combination #

Bold, italics, and strikethrough can be used in combination.

1***bold and italics***
2~~**strikethrough and bold**~~
3~~*strikethrough and italics*~~
4~~***bold, italics and strikethrough***~~

The rendered output looks like this:

bold and italics

strikethrough and bold

strikethrough and italics

bold, italics and strikethrough

6 Blockquotes #

For quoting blocks of content from another source within your document.

Add > before any text you want to quote:

1> **Fusion Drive** combines a hard drive with a flash storage (solid-state drive) 
2> and presents it as a single logical volume with the space of both drives combined.

The rendered output looks like this:

Fusion Drive combines a hard drive with a flash storage (solid-state drive) and presents it as a single logical volume with the space of both drives combined.

Blockquotes can also be nested:

1> Donec massa lacus, ultricies a ullamcorper in, fermentum sed augue.
2Nunc augue augue, aliquam non hendrerit ac, commodo vel nisi.
3>> Sed adipiscing elit vitae augue consectetur a gravida nunc vehicula. Donec auctor
4odio non est accumsan facilisis. Aliquam id turpis in dolor tincidunt mollis ac eu diam.

The rendered output looks like this:

Donec massa lacus, ultricies a ullamcorper in, fermentum sed augue. Nunc augue augue, aliquam non hendrerit ac, commodo vel nisi.

Sed adipiscing elit vitae augue consectetur a gravida nunc vehicula. Donec auctor odio non est accumsan facilisis. Aliquam id turpis in dolor tincidunt mollis ac eu diam.

7 Lists #

Unordered #

A list of items in which the order of the items does not explicitly matter.

You may use any of the following symbols to denote bullets for each list item:

1* valid bullet
2- valid bullet
3+ valid bullet

For example:

 1* Lorem ipsum dolor sit amet
 2* Consectetur adipiscing elit
 3* Integer molestie lorem at massa
 4* Facilisis in pretium nisl aliquet
 5* Nulla volutpat aliquam velit
 6  * Phasellus iaculis neque
 7  * Purus sodales ultricies
 8  * Vestibulum laoreet porttitor sem
 9  * Ac tristique libero volutpat at
10* Faucibus porta lacus fringilla vel
11* Aenean sit amet erat nunc
12* Eget porttitor lorem

The rendered output looks like this:

  • Lorem ipsum dolor sit amet
  • Consectetur adipiscing elit
  • Integer molestie lorem at massa
  • Facilisis in pretium nisl aliquet
  • Nulla volutpat aliquam velit
    • Phasellus iaculis neque
    • Purus sodales ultricies
    • Vestibulum laoreet porttitor sem
    • Ac tristique libero volutpat at
  • Faucibus porta lacus fringilla vel
  • Aenean sit amet erat nunc
  • Eget porttitor lorem

Ordered #

A list of items in which the order of items does explicitly matter.

11. Lorem ipsum dolor sit amet
22. Consectetur adipiscing elit
33. Integer molestie lorem at massa
44. Facilisis in pretium nisl aliquet
55. Nulla volutpat aliquam velit
66. Faucibus porta lacus fringilla vel
77. Aenean sit amet erat nunc
88. Eget porttitor lorem

The rendered output looks like this:

  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. Integer molestie lorem at massa
  4. Facilisis in pretium nisl aliquet
  5. Nulla volutpat aliquam velit
  6. Faucibus porta lacus fringilla vel
  7. Aenean sit amet erat nunc
  8. Eget porttitor lorem

If you just use 1. for each number, Markdown will automatically number each item. For example:

11. Lorem ipsum dolor sit amet
21. Consectetur adipiscing elit
31. Integer molestie lorem at massa
41. Facilisis in pretium nisl aliquet
51. Nulla volutpat aliquam velit
61. Faucibus porta lacus fringilla vel
71. Aenean sit amet erat nunc
81. Eget porttitor lorem

The rendered output looks like this:

  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. Integer molestie lorem at massa
  4. Facilisis in pretium nisl aliquet
  5. Nulla volutpat aliquam velit
  6. Faucibus porta lacus fringilla vel
  7. Aenean sit amet erat nunc
  8. Eget porttitor lorem

Task Lists #

Task lists allow you to create a list of items with checkboxes. To create a task list, add dashes (-) and brackets with a space ([ ]) before task list items. To select a checkbox, add an x in between the brackets ([x]).

1- [x] Write the press release
2- [ ] Update the website
3- [ ] Contact the media

The rendered output looks like this:

  • Write the press release
  • Update the website
  • Contact the media

8 Code #

Inline Code #

Wrap inline snippets of code with `.

1In this example, `<section></section>` should be wrapped as **code**.

The rendered output looks like this:

In this example, <section></section> should be wrapped as code.

Indented Code #

Or indent several lines of code by at least four spaces, as in:

1    // Some comments
2    line 1 of code
3    line 2 of code
4    line 3 of code

The rendered output looks like this:

// Some comments
line 1 of code
line 2 of code
line 3 of code

Block Fenced Code #

Use “fences” ``` to block in multiple lines of code with a language attribute.

1```markdown
2Sample text here...
3```

Syntax Highlighting #

GitHub Flavored Markdown also supports syntax highlighting.

To activate it, simply add the file extension of the language you want to use directly after the first code “fence”, ```js, and syntax highlighting will automatically be applied in the rendered HTML.

For example, to apply syntax highlighting to JavaScript code:

 1```js
 2grunt.initConfig({
 3  assemble: {
 4    options: {
 5      assets: 'docs/assets',
 6      data: 'src/data/*.{json,yml}',
 7      helpers: 'src/custom-helpers.js',
 8      partials: ['src/partials/**/*.{hbs,md}']
 9    },
10    pages: {
11      options: {
12        layout: 'default.hbs'
13      },
14      files: {
15        './': ['src/templates/pages/index.hbs']
16      }
17    }
18  }
19};
20```

The rendered output looks like this:

 1grunt.initConfig({
 2  assemble: {
 3    options: {
 4      assets: 'docs/assets',
 5      data: 'src/data/*.{json,yml}',
 6      helpers: 'src/custom-helpers.js',
 7      partials: ['src/partials/**/*.{hbs,md}']
 8    },
 9    pages: {
10      options: {
11        layout: 'default.hbs'
12      },
13      files: {
14        './': ['src/templates/pages/index.hbs']
15      }
16    }
17  }
18};
Syntax highlighting page in Hugo Docs introduces more about syntax highlighting, including highlight shortcode.

9 Tables #

Tables are created by adding pipes as dividers between each cell, and by adding a line of dashes (also separated by bars) beneath the header. Note that the pipes do not need to be vertically aligned.

1| Option | Description |
2| ------ | ----------- |
3| data   | path to data files to supply the data that will be passed into templates. |
4| engine | engine to be used for processing templates. Handlebars is the default. |
5| ext    | extension to be used for dest files. |

The rendered output looks like this:

Option Description
data path to data files to supply the data that will be passed into templates.
engine engine to be used for processing templates. Handlebars is the default.
ext extension to be used for dest files.
''

Adding a colon on the right side of the dashes below any heading will right align text for that column.

Adding colons on both sides of the dashes below any heading will center align text for that column.

1| Option | Description |
2|:------:| -----------:|
3| data   | path to data files to supply the data that will be passed into templates. |
4| engine | engine to be used for processing templates. Handlebars is the default. |
5| ext    | extension to be used for dest files. |

The rendered output looks like this:

Option Description
data path to data files to supply the data that will be passed into templates.
engine engine to be used for processing templates. Handlebars is the default.
ext extension to be used for dest files.
1<https://assemble.io>
2<contact@revolunet.com>
3[Assemble](https://assemble.io)

The rendered output looks like this (hover over the link, there is no tooltip):

https://assemble.io

contact@revolunet.com

Assemble

Add a Title #

1[Upstage](https://github.com/upstage/ "Visit Upstage!")

The rendered output looks like this (hover over the link, there should be a tooltip):

Upstage

Named Anchors #

Named anchors enable you to jump to the specified anchor point on the same page. For example, each of these chapters:

1## Table of Contents
2  * [Chapter 1](#chapter-1)
3  * [Chapter 2](#chapter-2)
4  * [Chapter 3](#chapter-3)

will jump to these sections:

1## Chapter 1 <a id="chapter-1"></a>
2Content for chapter one.
3
4## Chapter 2 <a id="chapter-2"></a>
5Content for chapter one.
6
7## Chapter 3 <a id="chapter-3"></a>
8Content for chapter one.
The specific placement of the anchor tag seems to be arbitrary. They are placed inline here since it seems to be unobtrusive, and it works.

11 Footnotes #

Footnotes allow you to add notes and references without cluttering the body of the document. When you create a footnote, a superscript number with a link appears where you added the footnote reference. Readers can click the link to jump to the content of the footnote at the bottom of the page.

To create a footnote reference, add a caret and an identifier inside brackets ([^1]). Identifiers can be numbers or words, but they can’t contain spaces or tabs. Identifiers only correlate the footnote reference with the footnote itself — in the output, footnotes are numbered sequentially.

Add the footnote using another caret and number inside brackets with a colon and text ([^1]: My footnote.). You don’t have to put footnotes at the end of the document. You can put them anywhere except inside other elements like lists, block quotes, and tables.

1This is a digital footnote[^1].
2This is a footnote with "label"[^label]
3
4[^1]: This is a digital footnote
5[^label]: This is a footnote with "label"

This is a digital footnote1.

This is a footnote with “label”2

12 Images #

Images have a similar syntax to links but include a preceding exclamation point.

1![Banana](/img/banana.png)

Banana

or:

1![Alt text](/img/monkey.png "The coding Monkey")

Alt text


  1. This is a digital footnote ↩︎

  2. This is a footnote with “label” ↩︎