diff --git a/markdown-guide.html b/markdown-guide.html new file mode 100644 index 0000000..e97a651 --- /dev/null +++ b/markdown-guide.html @@ -0,0 +1,99 @@ + + +
+ +**bold** +*italics* +~~+ +strikethrough~~
# Big header +## Medium header +### Small header +#### Tiny header+ +
* Generic list item +* Generic list item +* Generic list item + +1. Numbered list item +2. Numbered list item +3. Numbered list item+ +
[Text to display](http://www.example.com)+ +
> This is a quote. +> It can span multiple lines!+ +
+ +
| Column 1 | Column 2 | Column 3 | +| -------- | -------- | -------- | +| John | Doe | Male | +| Mary | Smith | Female | + +Or without aligning the columns... + +| Column 1 | Column 2 | Column 3 | +| -------- | -------- | -------- | +| John | Doe | Male | +| Mary | Smith | Female | ++ +
`var example = "hello!";` + +Or spanning multiple lines... + +``` +var example = "hello!"; +alert(example); +```+ + +