logo

Latest Posts by

Example

Basic Markdown Syntax

December 1, 2024
by JCachat

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

Headings

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

## h2 Heading
### h3 Heading
#### h4 Heading
##### h5 Heading
###### h6 Heading

The HTML looks like this:

<h2>h2 Heading</h2>
<h3>h3 …