Markdown
August 16, 2019
Bold
**text**Italicized
_text_Strikethrough
~~text~~Headings
# text
## text
### text
etc.Link
<Link>Link with text
[Text]<Link>Reusable Links
[Text][1]
Then in the bottom of the file define [1]
[1]: linkImages
!(image source)


Can also use reusable syntax like linksUnordered Lists
+ Item 1
+ Item 4
+ Item 2
+ Item 5
+ Item 3Ordered Lists
1. Item 1
1. Item 4
1. Item 2
1. Item 5
1. Item 3Horizontal Rule
---Blockquote
> textCode Blocks
'''language
//code
'''Inline Code
Some text with 'code' written inlineDiff
'''diff
var a = 0;
+ a = 1;
- a = 2;
'''Note: Use backticks (`) to start and end code and diff blocks
Tables
Center Aligned
|Header 1|Header 2|
|:------:|:------:|
|value 1|value 2|Left Aligned
|Header 1|Header 2|
|:-------|:-------|
|value 1|value 2|Right Aligned
|Header 1|Header 2|
|-------:|-------:|
|value 1|value 2|Github Specific
Checkboxes
* [ ] Item 1 Not Done
* [ ] Item 2 Not Done
* [x] Item 3 DoneIssues and Pull Requests
#99People
@PersonA blog written by Marty Sanchez, a web developer who lives and works in San Diego.