diff --git a/tools/markdown.md b/tools/markdown.md new file mode 100644 index 0000000..df6b827 --- /dev/null +++ b/tools/markdown.md @@ -0,0 +1,146 @@ + + + + + + + +### The Nile River is the largest river in the world. + + +| Explanation | Syntax | +| --- | --- | +| Heading level 1 | # Example of heading level 1 | +| Heading level 2 | ## Example of heading level 2 | +| Heading level 3 | ### Example of heading level 3 | +| Heading level 4 | #### Example of heading level 4 | +| Heading level 5 | ##### Example of heading level 5 | +| Heading level 6 | ###### Example of heading level 6 | + + + + + + + + + + +| Markdown | HTML | +| --- | --- | +| Example of Paragraph |

Example of Paragraph

| + + + + + + + + + +| Bold text | Italic text | +| --- | --- | +| **Javascript** is popular programming language |*Javascript* is popular programming language | + + + + + + + + +> The Nile River is the largest river in the world. + + + +>> The Mount Everest is the highest mountain in the world. + + + +| Blockquote | Nested Blockquote | +| --- | --- | +| > This is a blockquote | >> This is a nested blockquote | + + + + + + + + + + +1. First item +2. Second item +3. Third item + 1. Indented item + 2. Indented item +4. Fourth item + + + +- First item +- Second item +- Third item + - Indented item + - Indented item +- Fourth item + + + + + + + + +The `pwd` command writes to standard output the full path name of your current directory + + + + + + + + + + + +********** +---------- +__________ + + + + + + + + + + +[Wikipedia](https://wikipedia.com) is a free online encyclopedia, created and edited by volunteers around the world and hosted by the Wikimedia Foundation. + + + + + + + + +![Markdown Logo](markdown.png "Markdown") + + diff --git a/tools/markdown.png b/tools/markdown.png new file mode 100644 index 0000000..0cdbe63 Binary files /dev/null and b/tools/markdown.png differ