- option 1
- option 2
ID | Name | |
---|---|---|
1 | James | [email protected] |
2 | Peter Just for Test | [email protected] |
Emphasis, aka italics, with asterisks or underscores.
Strong emphasis, aka bold, with asterisks or underscores.
Combined emphasis with asterisks and underscores.
Strikethrough uses two tildes. Scratch this.
I'm an inline-style link with title
I'm a relative reference to a repository file
You can use numbers for reference-style link definitions
Or leave it empty and use the link text itself.
URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com or http://www.example.com and sometimes example.com (but not on Github, for example).
Some text to show that the reference links can follow later.
Here's our logo (hover to see the title text):
package com.example.java;
import java.util.Date;
public static void main(String[] args) {
Date date = new Date();
System.out.println(date.toString());
}
package main
import (
import (
"bufio"
"encoding/base64"
"fmt"
"log"
"net"
"strings"
)
type Client struct {
conn net.Conn
localName string
br *bufio.Reader
}
func Dial(addr string) (*Client, error) {
conn, err := net.Dial("tcp", addr)
if err != nil {
return nil, err
}
c := &Client{conn: conn, localName: "localhost", br: bufio.NewReader(conn)}
code, msg, _, err := c.parseResp()
if err != nil {
conn.Close()
return nil, err
}
log.Printf("Dial: %s#%s\n", code, msg)
return c, nil
}
)
Three or more...
Hyphens
Asterisks
Underscores
Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.
Quote break.
This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can put Markdown into a blockquote.