Markdown syntax guide

Use the examples below when writing posts. Output and source are shown side by side.

Headers

This is a Heading h1

This is a Heading h2

This is a Heading h3

This is a Heading h4

This is a Heading h5
This is a Heading h6
# This is a Heading h1
## This is a Heading h2
### This is a Heading h3
#### This is a Heading h4
##### This is a Heading h5
###### This is a Heading h6

Emphasis

This text will be italic This text will be bold You can combine them

This text will be *italic*
**This text will be bold**
You *can* **combine** them

Lists

Unordered

  • Item one
  • Item two

Ordered

  1. First
  2. Second
**Unordered**
- Item one
- Item two

**Ordered**
1. First
2. Second

Quote

A quoted line of text.

> A quoted line of text.

Code

Use inline code for short snippets.

Use `inline code` for short snippets.

A fenced block:

code block
A fenced block:

```
code block
```

Links

[Broadbent Group](https://broadbent.group)

Tables

Column 1Column 2
AB
| Column 1 | Column 2 |
| --- | --- |
| A   | B     |