Skip to content

Markdown Examples

Formatting
Bold
Source
bold
Markup
**bold**
Italics
Source
italics
Markup
*italics*
Underline
Status
Source
underline
Markup
underline
Notes
Markdown doesn’t have a standard way to express underline.
Strikethrough
Source
strikethrough
Markup
~~strikethrough~~
Link
Basic link
Source
Markup
[link](https://example.com)
Link to email
Source
Markup
[link to email](mailto:fake@example.com)
Media
Image
Status
Source
A bear
Markup
![image.png](https://codahosted.io/docs/Yh3vyeakVr/blobs/bl-hio0OxCzxy/5d54c120c9bf9da2e66a5e18fa8f1b84b1b18d970f640a8f280aeed5fc0e71d3a5c73e0dc86a34454f32a2d69a68027a29bebeb602ccc25fd829b09ab264eec03601c0f7e8551f18f2b1ae748fc9e2e1468613396dd1f0cc888f0edcddee5efc5cd8df66)
Notes
The alt text isn’t preserved.
Image in canvas
Status
Source
A bear
Markup
Notes
Images in canvases (columns, pages) are lost.
File in canvas
Status
Source
invoicesample.pdf
198 KB
Markup
Notes
Files in canvases (columns, pages) are lost.
File
Status
Source
invoicesample.pdf
Markup
![invoicesample.pdf](https://codahosted.io/docs/Yh3vyeakVr/blobs/bl-Tvd0VL24g9/9f8ddb3d7cccc087ea19e513272f8b3bbb88f64687647c4d3605f50a110067301064d44b2e08d44406095561e7f3359af42628647adb8b8a649340d0a3f71757073145801fd685229622c5067619f2ca1cf437e93a72fb9a8c261a129c476d490fc9e04c)
Notes
Files are turned into images.

Horizontal rule
Horizontal rule
Status
Source
This
That
Markup
This

That
Notes
The horizontal rule is lost.
Line breaks
Line breaks
Source
Some text
More text
Markup
Some text
More text
Block quotes
Single line
Source
Quote here
Markup
> Quote here
Multiple lines
Source
Multiple
Lines
Markup
> Multiple
> Lines
Blank line
Source
Includes

a blank line
Markup
> Includes
>
> a blank line
Columns
Columns
Status
Source
Column 1
Column 2
Markup
Column 1
Column 2
Notes
The side-by-side nature of column is lost.
Lists
Ordered list
Source
foo
bar
Markup
1. foo
2. bar
Unorded list
Source
foo
bar
Markup
- foo
- bar
Unchecked
Source
unchecked
checked
Markup
- [ ] unchecked
- [x] checked
Collapsible list
Status
Source
One
Two
Markup
>> One
>> Two
Notes
Incorrectly converted to block quotes.
Nested list
Source
One
Two
Three
Markup
1. One
1. Two
2. Three
2. Four
Code
Inline code
Source
Use the foo() method
Markup
Use the `foo()` method
Code block
Source
// This is code
foo();
Markup
```
// This is code
foo();
```
Inline code with formatting
Status
Source
Use the foo(bar) method
Markup
Use the `foo(``**bar**``)` method
Notes
The text formatting in the inline code is preserved with markdown syntax, which breaks the code. Additionally, the inline code is split into multiple segments, with no space inbetween.
Code block with formatting
Status
Source
// This is code
foo();
Markup
```
// This is **code**
foo();
```
Notes
The text formatting in the code block is preserved with markdown syntax, which breaks the code.
Inline code with backtick
Status
Source
Enter the value a`b
Markup
Enter the value `a`b`
Notes
The code span is not escaped properly.
Code block with triple backtick
Status
Source
a
```
b
Markup
```
a
```
b
```
Notes
The code block is not escaped properly.
Headings
Heading 1
Source

Heading 1

Markup
# Heading 1
Heading 2
Source

Heading 2

Markup
## Heading 2
Heading 3
Source

Heading 3

Markup
### Heading 3
Pull quote
Pull quote
Status
Source
“This rules!”
Markup
" “This rules!”
Notes
Markdown doesn’t have a pull quote syntax.
An extra leading quote is inserted.
Table
Text columns
Status
Source
Markup
## Text columns
| Text | Link |
| --- | --- |
| Apple | https://example.com |
Notes
Edits to the table contents doesn’t cause the formula to recalculate.
Text columns w/ rich text
Status
Markup
## Rich text columns | Formatting | Headings | Lists | Code | Quotes | | --- | --- | --- | --- | --- | | **Bold** | Heading 1 | Ordered<br/>List | `Inline code` | Block quote | | *Italics* | Heading 2 | Unordered<br/>List | ```<br/>Code block<br/>``` | Pull quote | | Underline | Heading 3 | Unchecked<br/>Checked | ```<br/>Formatted **code** block<br/>``` | | | ~~Strikethrough~~ | | | | |
Notes
Some formatting is retained, but most is lost and some is serialized incorrectly.

Number columns
Markup
## Number columns | Number | Percent | Currency | Slider | Progress | Scale | | --- | --- | --- | --- | --- | --- | | 50 | 50% | $50.00 | 50 | 50 | 3 |
Date columns
Source
Markup
## Date columns
| Date | Time | Date and time | Duration |
| --- | --- | --- | --- |
| 10/20/2023 | 9:00 AM | 10/20/2023, 7:00 PM | 10 mins |
Boolean columns
Markup
## Boolean columns
| Checkbox | Toggle |
| --- | --- |
| false | true |
People columns
Markup
## People columns
| People | Email | Thumbs up |
| --- | --- | --- |
| Eric Koleda | foo@example.com | Eric Koleda |
Button columns
Status
Markup
## Button columns
| Button |
| --- |
| model |
Notes
The button is rendered as the string “model”.
Media columns
Status
Source
Markup
## Media columns | Image | Image URL | File | | --- | --- | --- | | 1F600_color.png | https://static.thenounproject.com/png/151542-200.png | blogpost.docx |
Notes
The file name, not URL, is rendered for image and file attachments.
Dropdown columns
Source
Markup
## Table | Select list | Relation | | --- | --- | | Apple | Apple |
Button
Button
Status
Source
Markup
Open hyperlink
Notes
The button label is displayed as plain text.
Colors
Text color
Status
Source
Blue
Markup
Blue
Notes
Markdown doesn’t support color.
Background color
Status
Source
Blue background
Markup
Blue background
Notes
Markdown doesn’t support color.
Escaping markup
In rich text
Status
Source
This is **cool**
Markup
This **is** **cool**
Notes
Markdown markup in the source text isn’t encoded.
In plain text
Status
Source
This is **cool**
Markup
This is **cool**
Notes
Markdown markup in the source text isn’t encoded.
Want to print your doc?
This is not the way.
Try clicking the ··· in the right corner or using a keyboard shortcut (
CtrlP
) instead.