ApexMD

A Tour Of The Markdown Syntax


Markdown is a very powerful markup language, here's a list of all the formats we support:

Bold & Italic

Here's a sentence with **bold**, *italic*, _underscore_, ~~strikeout~~ and ==highlighted text==.

Here's a sentence with bold, italic, ~underscore~, strikeout and ::highlighted text::.

Links

Here's a link to an [external site](https://collectednotes.com).
An anchor [within the page](#links)

Here's a link to an external site. An anchor within the page A footnote 1

Images

![alt text for image](https://dz9bwsmj4cyj5.cloudfront.net/assets/hero-head-figure-4d0ee43c7fdce7b1761241f6e08b0e2dda9709a4001dca7e6c7e6e3e97f2976f.png)

[image:F5082795-2CDE-469E-8DB0-DB0D3C82E2E3-666-00000198D705E62B/banner-releases.png]

# H1
## H2
### H3
#### H4
##### H5
###### H6

H2

H3

H4

H5
H6

Bullet points

- an unordered list
- list

1. a numbered one
2. another bullet
  1. a numbered one
  2. another bullet

Checkboxes

-[] Something I need to do
-[x] Something I accomplished

Something I need to do

Something I accomplished

"```swift func hello() { print("Hello") }
"```

(Note: remove quotes above)

func hello() { print("Hello")
}

Most popular programming languages are supported.

Note dQw4w9WgXcQ is the id of the video, which can be found on the YouTube video URL.

[//]: # (This may be the most platform independent comment)

A tour of the Markdown syntax — Collected Notes