Rendering results

icon picker
Markdown Examples

Bold
Stars
Source
**stars**
Rendered
stars
Underscores
Status
Source
__underscores__
Rendered
underscores
Notes
According to the Markdown spec, surrounding text in double underscores should make it bold, not underlined.
Italics
Stars
Source
*stars*
Rendered
stars
Underscores
Source
_underscores_
Rendered
underscores
Strikethrough
Tildas
Source
~~foo~~
Rendered
foo
Link
Basic link
Source
[link](http://example.com)
Rendered
Simple link
Source
<http://example.com>
Rendered
Link to email
Source
[link to email](fake@example.com)
Rendered
Simple link to email
Source
<fake@example.com>
Rendered
Auto-linking
Source
example.com
Rendered
Image
Basic image
Source
![alt](https://picsum.photos/50/50 "Title")
Rendered
alt
Image with link
Status
Source
[![alt](https://picsum.photos/50/50)](http://example.com)
Rendered
Notes
Coda itself doesn’t support links on images, so it doesn’t work in Markdown either.
Ordered list
Ordered list
Source
1. foo
1. bar
Rendered
foo
bar
Unorded list
Dashes
Source
- with
- dashes
Rendered
with
dashes
Stars
Source
* with
* stars
Rendered
with
stars
Checkbox list
Unchecked
Source
- [] unchecked
Rendered
unchecked
Unchecked with space
Source
- [ ] unchecked with space
Rendered
unchecked with space
Lower case X
Source
- [x] checked lower
Rendered
checked lower
Upper case X
Source
- [X] checked upper
Rendered
checked upper
Nested lists
Nested list
Source
1. One
- Two
- Three
1. Four
Rendered
One
Two
Three
Inline code
Within text
Source
Use the `foo()` method
Rendered
Use the foo() method
Entire line
Source
`The whole line is code`
Rendered
The whole line is code
Escaping backtick
Source
``Double backticks to `escape` a backtick``
Rendered
Double backticks to `escape` a backtick
Code block
Indented
Source
// Indented code
foo();
Rendered
// Indented code

foo();
Fenced
Source
```
// Fenced code
foo();
```
Rendered

// Fenced code

foo();

Horizontal rule
Dashes
Source
Three

---

Dashes
Rendered
Three
Dashes
Stars
Source
Three

***

Stars
Rendered
Three
Stars
Heading 1
Hash
Source
# Single hash
Rendered

Single hash

Equals
Source
Triple equals below
===
Rendered
Triple equals below
===
Heading 2
Hashes
Source
## Double hash
Rendered

Double hash

Dashes
Source
Triple dash below
---
Rendered
Triple dash below
Heading 3
Hashes
Source
### Foo
Rendered

Foo

Heading 4
Hashes
Status
Source
#### Foo
Rendered
Foo
Notes
Coda doesn’t support headers beyond level 3.
Heading 5
Hashes
Status
Source
##### Foo
Rendered
Foo
Notes
Coda doesn’t support headers beyond level 3.
Heading 6
Hashes
Status
Source
###### Foo
Rendered
Foo
Notes
Coda doesn’t support headers beyond level 3.
Paragraphs
Blank line
Source
Some text.

More text.
Rendered
Some text.
More text.
Line breaks
Just line break
Source
Line breaks
aren't rendered
Rendered
Line breaks
aren’t rendered
Notes
According to spec, line breaks in the source code shouldn’t be rendered.
Two trailing spaces
Source
Use two spaces
to create a line break
Rendered
Use two spaces
to create a line break
Block quotes
Single line
Source
> Quote here
Rendered
Quote here
Multiple lines
Source
> Multiple
> Lines
Rendered
Multiple
Lines
Blank line
Status
Source
> Includes
>
> a blank line
Rendered
Includes
a blank line
Notes
The blank line isn’t preserved.
Nested
Status
Source
> Nested
>> Quotes
Rendered
Nested
Quotes
Notes
Coda doesn’t support nested quotes.
Table
Table extension
Status
Source
| Col1 | Col2 |
| ---- | ---- |
| foo | bar |
Rendered
| Col1 | Col2 |
| ---- | ---- |
| foo | bar |
Notes
Coda doesn’t support simple tables.

Mixed markup
HTML in Markdown
Status
Source
Markdown <i>containing</i> HTML.
Rendered
Markdown containing HTML.
Notes
HTML tags in markdown are stripped.

Escaping markup
Backslashes
Source
This \*is\* cool
Rendered
This *is* cool
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.