Markdown - taoualiw/My-Knowledge-Base GitHub Wiki
- - [Headings](#headings-top) - [Paragraphs](#paragraphs-top) - [Bold Text](#bold-text-top) - [Italicized Text](#italicized-text-top) - [Block Quotes](#blockquotes-top) - [Lists](#lists-top)
- - [Inline Links](#inline-link-top) - [Reference Links](#reference-links-top)
- - [Standard Table](#standard-table-top)
- - [Inline Code](#inline-code-top) - [Code Blocks](#code-blocks-top)
- - [Inline Images](#inline-images-top) - [Image References](#image-references-top)
- - [Horizontal Rules](#horizontal-rules-top) - [Backslash Escape Characters](#backslash-escape-characters-top)
Headings (top)
Paragraphs (top)
And this is the second separated by a blank line.
<h3 id="bold">Bold Text <a href="#top">(top)</a></h3>
```plain
In this sentence the word **bold** is tagged with <strong> tags.
Italicized Text (top)
Blockquotes (top)
/***********************************
- Nested Blockquote ***********************************/
Here is a block that contains
a nest! and I'm back out of the nest...
<h3 id="list">Lists <a href="#top">(top)</a></h3>
```plain
/***********************************
* Unordered List
***********************************/
- list item 1
- list item 2
- sublist 1
- sublist 2
- list item 3
/***********************************
* Ordered List
***********************************/
1. list item 1
2. list item 2
1. sublist 1
2. sublist 2
3. list item 3
Inline Link (top)
Reference Links (top)
[1]: http://www.google.com "Google"
[2]: http://www.github.com "GitHub"
# Tables
<h3 id="table">Standard Table <a href="#top">(top)</a></h3>
```plain
| Header 1 | Header 2 |
| -------- | ------------ |
| Content | More content |
Inline Code (top)
Code Blocks (top)
/******************************************************
- GitHub Flavored Code Block with Syntax Highlighting
*******************************************************/
Three ticks before and after the code block & specify language:
void replace(){ //lots of really cool code in here }
# Images
<h3 id="inlineimg">Inline Images <a href="#top">(top)</a></h3>
```plain
![alt text](path/to/img.jpg "Title")
Image References (top)
[id]: path/to/img.jpg "Title"
# Other
<h3 id="horiz">Horizontal Rules <a href="#top">(top)</a></h3>
```plain
- - -