Knowby
Markdown Examples

This knowby provides examples of how to use Markdown Language to format descriptions and steps in a knowby. Each step provides an example of the formatted text as well as an image of the Markdown text as it appears in edit mode.

This knowby provides examples of how to use Markdown Language to format descriptions and steps in a knowby. Each step provides an example of the formatted text as well as an image of the Markdown text as it appears in edit mode.

1
**Headings**

# Heading Level 1
## Heading Level 2
### Heading Level 3
#### Heading Level 4

Headings

Heading Level 1

Heading Level 2

Heading Level 3

Heading Level 4

2
**Bold Text**

I just love **bold text**.

Bold Text

I just love bold text.

3
**Bullet Points**

* Bullet Point 1
* Bullet Point 2
* Bullet Point 3

Bullet Points

  • Bullet Point 1
  • Bullet Point 2
  • Bullet Point 3
4
**Blockquotes**

> Blockquotes - a highlighted box within the step.

Blockquotes

Blockquotes - a highlighted box within the step.

5
> ⚠️ **WARNING:** You can use emojis in blockquotes!

> You can even nest the blockquotes
>
>>> ⚠️ **WARNING:** This blockquote is nested!

⚠️ WARNING: You can use emojis in blockquotes!

You can even nest the blockquotes > >>> ⚠️ WARNING: This blockquote is nested!

6
**Blockquotes can include other Elements**

> #### The quarterly results look great!
>
> - Revenue was off the chart.
> - Profits were higher than ever.
>
>  *Everything* is going according to **plan**.

Blockquotes can include other Elements

The quarterly results look great!

>

  • Revenue was off the chart.
  • Profits were higher than ever. > Everything is going according to plan.
7
**Add tables to your knowbys** using the [Markdown Tables Generator](https://www.tablesgenerator.com/markdown_tables)

| Emojis | Text | Numbers | Prices | Dates |
|---|---|---|---|---|
| ⚠️ | Text | 12 | $12.34 | 1/2/34 |
| 🙂 | In | 34 | $34.56 | 3/4/56 |
| 👍 | Columns | 56 | $56.78 | 5/6/78 |

Add tables to your knowbys using the Markdown Tables Generator

Emojis Text Numbers Prices Dates
⚠️ Text 12 $12.34 1/2/34
🙂 In 34 $34.56 3/4/56
👍 Columns 56 $56.78 5/6/78
8
**Display Fenced Code Blocks**

```
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
```

Display Fenced Code Blocks

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
9
**Strikethrough**

The world is ~~flat.~~ round.

Strikethrough

The world is flat. round.

10
**Task Lists**

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

Task Lists

  • Write the press release
  • Update the website
  • Contact the media
11
😃 **Copying and Pasting Emoji**

Simply copy an emoji from a source like [Emojipedia](https://emojipedia.org/) and paste it into your document.

😃 Copying and Pasting Emoji

Simply copy an emoji from a source like Emojipedia and paste it into your document.