cuitor

网站支持Markdown编辑

Markdown原文:

A First Level Header
====================

A Second Level Header
---------------------

Now is the time for all good men to come to
the aid of their country. This is just a
regular paragraph.

The quick brown fox jumped over the lazy
dog's back.

### Header 3

> This is a blockquote.
>
> This is the second paragraph in the blockquote.
>
> ## This is an H2 in a blockquote

Markdown渲染:

A First Level Header

A Second Level Header

Now is the time for all good men to come to the aid of their country. This is just a regular paragraph.

The quick brown fox jumped over the lazy dog’s back.

Header 3

This is a blockquote.

This is the second paragraph in the blockquote.

This is an H2 in a blockquote


Markdown支持代码高亮:

C代码

#include <stdio.h>

int main(void)
{
    printf("hello world!\");
    return 0; 
} 

Golang代码

package main

import (
    "fmt"
)

func main() {
    fmt.Println("hello, world!")
}

bash脚本

#!/bin/bash

echo "hello, world!"

评论