Qndev’s blog

About me Logo

View the Project on GitHub qndev/qndev.github.io

6 July 2019

Markdown syntax

by NGUYEN DINH QUANG

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

LISTS

Unordered

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

Ordered

1. Item 1
2. Item 2
3. Item 3
   * Item 3a
   * Item 3b
  1. Item 1
  2. Item 2
  3. Item 3
    • Item 3a
    • Item 3b

IMAGES

![Screenshot home page](/images/screenshot-homepage.png)
Format: ![Alt Text](url)

Screenshot home page

EMPHASIS

*This text will be italic*
_This will also be italic_

**This text will be bold**
__This will also be bold__

_You **can** combine them_

This text will be italic This will also be italic

This text will be bold This will also be bold

You can combine them

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

http://github.com - automatic! GitHub

Blockquotes

As Grace Hopper said:

> I’ve always been more interested
> in the future than in the past.

As Grace Hopper said:

I’ve always been more interested in the future than in the past.

Syntax highlighting

function test() {
console.log("look ma’, no spaces");
}

Task Lists

- [x] this is a complete item
- [ ] this is an incomplete item
- [x] @mentions, #refs, [links](), **formatting**, and <del>tags</del> supported
- [x] list syntax required (any unordered or ordered list supported)

EMOJI

GitHub supports emoji!
:+1: :sparkles: :camel: :tada:
:rocket: :metal: :octocat:

GitHub supports emoji! :+1::sparkles::camel::tada::rocket::metal::octocat:


Latest Posts

tags: markdown