Markdown

Table of Contents

  1. Headers
  2. Emphasis
  3. Lists
  4. Images
  5. Links
  6. Tables
  7. Syntax highlighting
  8. Emoji

Headers

# This is an \<h1> tag
## This is an \<h2> tag
###### This is an \<h6> tag

This is an \<h1> tag

This is an \<h2> tag

This is an \<h6> tag

Emphasis

*This text will be italic*
**This text will be bold**

This text will be italic
This text will be bold

Lists

* Item 1
* Item 2
....* Item 2a
....* Item 2b

  • Item 1
  • Item 2
    • Item 2a
    • Item 2b

Images

![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)

GitHub Logo
Format: Alt Text

Links

http://github.com - automatic!
[GitHub](http://github.com)

http://github.com - automatic!
GitHub

Tables

First Header | Second Header
------------ | -------------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column

First Header Second Header
Content from cell 1 Content from cell 2
Content in the first column Content in the second column

Syntax highlighting

```csharp
Console.WriteLine("Hello World!");
for (int i = 0 ; i < 10; i++)
{
// Code to execute.
}
```

Console.WriteLine("Hello World!");
for (int i = 0 ; i < 10; i++)
{
 // Code to execute.
}

Emoji

:warning:
:heavy_check_mark:

https://github.com/ikatyang/emoji-cheat-sheet/blob/master/README.md

Leave a Reply

Your email address will not be published. Required fields are marked *