# Heading h1
## Heading h2
### Heading h3
#### Heading h4
##### Heading h5
###### Heading h6Note: h1 - h4 items will be automatically added to the Table of Contents.
Wrap text with a single _ for Italic text:
This is _italic text_.Wrap text with double ** for Bold text:
This is **bold text**.Wrap text with double ~~ for strikethrough text:
This is ~~strikethrough~~ text.Wrap the title in square brackets [title] immediately followed by the URL in (https://example.com):
[WordPress](https://wordpress.org/)Use > for blockquotes, double >> to further indent:
> Blockquote
>> Indented BlockquoteUse - for unordered lists, and intent two spaces for list subitems:
- List
- List
- List
- ListUse numbered items followed by a `.:
1. One
2. Two
3. ThreeUse --- for a horizontal rules:
---| A | B |
| ----- | ----- |
| Alpha | Bravo |Wrap inline code with single ``` backticks:
```
This is `inline code` wrapped with backticks
```When documenting an example, use the markdown ``` code block to demarcate the beginning and end of the code sample:
```javascript
var foo = function (bar) {
return bar++;
};
console.log(foo(5));
``````json
{
"firstName": "John",
"lastName": "Smith",
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021-3100"
},
"phoneNumbers": [
{
"type": "home",
"number": "212 555-1234"
},
{
"type": "office",
"number": "646 555-4567"
}
],
"children": [],
"spouse": null
}
``````css
foo {
padding: 5px;
margin-right: 3px;
}
.bar {
background-color: #f00;
}
``````scss
foo {
padding: 5px;
margin-right: 3px;
}
.bar {
background-color: #f00;
}
``````html
<span class="my-class">Example</span>
``````php
$array = array(
"foo" => "bar",
"bar" => "foo",
);
``````md
This is _italic text_. This is **bold text**.
```