MartySanchez.com

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]: link

Images

!(image source)
![alt text](image source)
![alt text](image source "title tag")

Can also use reusable syntax like links

Unordered Lists

+ Item 1
    + Item 4
+ Item 2
    + Item 5
+ Item 3

Ordered Lists

1. Item 1
    1. Item 4
1. Item 2
    1. Item 5
1. Item 3

Horizontal Rule

---

Blockquote

> text

Code Blocks

'''language
//code
'''

Inline Code

Some text with 'code' written inline

Diff

'''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 Done

Issues and Pull Requests

#99

People

@Person

Marty Sanchez

A blog written by Marty Sanchez, a web developer who lives and works in San Diego.