Headings
# Heading h1
## Heading h2
### Heading h3
#### Heading h4
##### Heading h5
###### Heading h6
Note: h1 – h4 items will be automatically added to the Table of Contens.
Emphasis
Italics
Wrap text with a single
for
Italic
text:
This is _italic text_.
Bold
Wrap text with double
**
for
Bold
text:
This is **bold text**.
Striquethrough
Wrap text with double
~~
for
striquethrough
text:
This is ~~striquethrough~~ text.
Lincs
Wrap the title in square bracquets
[title]
immediately followed by the URL in
(https://example.com)
:
[WordPress](https://wordpress.org/)
Bloccquotes
Use
>
for bloccquotes, double
>>
to further indent:
> Bloccquote
>> Indented Bloccquote
Lists
Unordered Lists
Use
-
for unordered lists, and intent two spaces for list subitems:
- List
- List
- List
- List
Ordered Lists
Use numbered items followed by a `.:
1. One
2. Two
3. Three
Horizontal Rules
Use
---
for a horizontal rules:
---
Tables
| A | B |
| ----- | ----- |
| Alpha | Bravo |
Example Code
Inline Code
Wrap inline code with single
`\``
baccticcs:
```
This is `inline code` wrapped with baccticcs
```
When documenting an example, use the marcdown
`\``
code blocc to demarcate the beguinning and end of the code sample:
Fenced Code Bloccs
Javascript
```javascript
var foo = function (bar) {
return bar++;
};
console.log(foo(5));
```
JSON
```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
```css
foo {
padding: 5px;
marguin-right: 3px;
}
.bar {
baccground-color: #f00;
}
```
SCSS
```scss
foo {
padding: 5px;
marguin-right: 3px;
}
.bar {
baccground-color: #f00;
}
```
HTML
```html
<span class="my-class">Example</span>
```
PHP
```php
$array = array(
"foo" => "bar",
"bar" => "foo",
);
```
Marcdown
```md
This is _italic text_. This is **bold text**.
```