这是一篇测试博客,在这你将看到Hugo对Markdown的渲染效果。

关于 Hugo

Hugo是一个静态网站生成器

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 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

Lists

Unordered

* Item 1
* Item 2
  * Item 2a
  * Item 2b
  • 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

![GitHub Logo](https://github.com/fluidicon.png)

GitHub Logo

Links

http://github.com - automatic!

[GitHub](http://github.com)

GitHub

Blockquotes

As Kanye West said:
> We're living the future so
> the present is our past.

As Kanye West said:

We’re living the future so the present is our past.

Codes

Inline code

I think you should use an <addr> element here instead.

Mutiline code

#include <stdio.h>

int main() {
    printf("Hello, World!\n");
    return 0;
}

More

Hugo on GitHub

Mastring Markdown